Merge pull request #8934 from ollieh/ksuperkey

ksuperkey: init
This commit is contained in:
Arseniy Seroka 2015-07-22 01:33:42 +03:00
commit 431555f86b
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchgit, libX11, libXtst, pkgconfig, inputproto, libXi, xproto, xextproto }:
stdenv.mkDerivation rec {
name = "ksuperkey-git-2015-07-21";
buildInputs = [
libX11 libXtst pkgconfig inputproto libXi xproto xextproto
];
src = fetchgit {
url = "https://github.com/hanschen/ksuperkey";
rev = "e75a31a0e3e80b14341e92799a7ce3232ac37639";
sha256 = "00be6b93daf78bae0223f002e782e30a650dded3c5a83b1adfe9439e20e398fb";
};
preConfigure = ''
makeFlags="$makeFlags PREFIX=$out"
'';
meta = {
description = "A tool to be able to bind the super key as a key rather than a modifier";
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.vozz ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -11814,6 +11814,8 @@ let
koji = callPackage ../tools/package-management/koji { };
ksuperkey = callPackage ../tools/X11/ksuperkey { };
kubernetes = callPackage ../applications/networking/cluster/kubernetes { };
lame = callPackage ../development/libraries/lame { };