3
0
Fork 0
forked from mirrors/nixpkgs

Merge branch 'xchainkeys' of git://github.com/iyzsong/nixpkgs

This adds a new package, xchainkeys. It builds, so I ship.

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2013-03-08 19:08:56 -05:00
commit 9158ad45f1
2 changed files with 20 additions and 0 deletions

View file

@ -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";
};
}

View file

@ -8004,6 +8004,8 @@ let
xcalib = callPackage ../tools/X11/xcalib { };
xchainkeys = callPackage ../tools/X11/xchainkeys { };
xchat = callPackage ../applications/networking/irc/xchat { };
xchm = callPackage ../applications/misc/xchm { };