depot/third_party/nixpkgs/pkgs/tools/X11/xchainkeys/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

21 lines
566 B
Nix

{ lib, stdenv, fetchurl, libX11 }:
stdenv.mkDerivation rec {
pname = "xchainkeys";
version = "0.11";
src = fetchurl {
url = "http://henning-bekel.de/download/xchainkeys/xchainkeys-${version}.tar.gz";
sha256 = "1rpqs7h5krral08vqxwb0imy33z17v5llvrg5hy8hkl2ap7ya0mn";
};
buildInputs = [ libX11 ];
meta = {
homepage = "http://henning-bekel.de/xchainkeys/";
description = "A standalone X11 program to create chained key bindings";
license = lib.licenses.gpl3;
platforms = lib.platforms.unix;
mainProgram = "xchainkeys";
};
}