1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 17:10:48 +00:00
nixpkgs/pkgs/tools/X11/xchainkeys/default.nix

20 lines
504 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, libX11 }:
2013-03-08 05:55:32 +00:00
stdenv.mkDerivation rec {
name = "xchainkeys-0.11";
src = fetchurl {
url = "http://henning-bekel.de/download/xchainkeys/${name}.tar.gz";
2013-03-08 05:55:32 +00:00
sha256 = "1rpqs7h5krral08vqxwb0imy33z17v5llvrg5hy8hkl2ap7ya0mn";
};
buildInputs = [ libX11 ];
meta = {
homepage = "http://henning-bekel.de/xchainkeys/";
2013-03-08 05:55:32 +00:00
description = "A standalone X11 program to create chained key bindings";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl3;
platforms = lib.platforms.unix;
2013-03-08 05:55:32 +00:00
};
}