summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/X11/xchainkeys
diff options
context:
space:
mode:
authorSong Wenwu <iyzsong@gmail.com>2013-03-08 13:55:32 +0800
committerSong Wenwu <iyzsong@gmail.com>2013-03-08 13:55:32 +0800
commit9cbcbc5323368bf958c3a8dd8968bd41579b91ea (patch)
tree086b290b7cb3c641c536d3ef14260d96b8fdbdff /pkgs/tools/X11/xchainkeys
parent234c6b74c67ccd7326a299235de68ff55d20835d (diff)
add xchainkeys-0.11
Diffstat (limited to 'pkgs/tools/X11/xchainkeys')
-rw-r--r--pkgs/tools/X11/xchainkeys/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/X11/xchainkeys/default.nix b/pkgs/tools/X11/xchainkeys/default.nix
new file mode 100644
index 000000000000..42e26825e330
--- /dev/null
+++ b/pkgs/tools/X11/xchainkeys/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, fetchurl, libX11 }:
+
+stdenv.mkDerivation rec {
+ name = "xchainkeys-0.11";
+
+ src = fetchurl {
+ url = "https://xchainkeys.googlecode.com/files/${name}.tar.gz";
+ sha256 = "1rpqs7h5krral08vqxwb0imy33z17v5llvrg5hy8hkl2ap7ya0mn";
+ };
+
+ buildInputs = [ libX11 ];
+
+ meta = {
+ homepage = "https://code.google.com/p/xchainkeys/";
+ description = "A standalone X11 program to create chained key bindings";
+ license = "GPLv3";
+ };
+}