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:
commit
9158ad45f1
18
pkgs/tools/X11/xchainkeys/default.nix
Normal file
18
pkgs/tools/X11/xchainkeys/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue