numlockx: init at 1.2

This commit is contained in:
Igor Sharonov 2015-06-27 15:16:30 +03:00
parent fe6226af8a
commit 7a692670e3
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchFromGitHub, libX11, libXext, autoconf }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "1.2";
pname = "numlockx";
src = fetchFromGitHub {
owner = "rg3";
repo = pname;
rev = "9159fd3c5717c595dadfcb33b380a85c88406185";
sha256 = "1w49fayhwzn5rx0z1q2lrvm7z8jrd34lgb89p853a024bixc3cf2";
};
buildInputs = [ libX11 libXext autoconf ];
meta = with stdenv.lib; {
description = "Allows to start X with NumLock turned on";
license = licenses.mit;
platforms = platforms.all;
};
}

View file

@ -2426,6 +2426,8 @@ let
numdiff = callPackage ../tools/text/numdiff { };
numlockx = callPackage ../tools/X11/numlockx { };
nssmdns = callPackage ../tools/networking/nss-mdns { };
nwdiag = pythonPackages.nwdiag;