lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

numlockx: init at 1.2

+24
+22
pkgs/tools/X11/numlockx/default.nix
··· 1 + { stdenv, fetchFromGitHub, libX11, libXext, autoconf }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "${pname}-${version}"; 5 + version = "1.2"; 6 + pname = "numlockx"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "rg3"; 10 + repo = pname; 11 + rev = "9159fd3c5717c595dadfcb33b380a85c88406185"; 12 + sha256 = "1w49fayhwzn5rx0z1q2lrvm7z8jrd34lgb89p853a024bixc3cf2"; 13 + }; 14 + 15 + buildInputs = [ libX11 libXext autoconf ]; 16 + 17 + meta = with stdenv.lib; { 18 + description = "Allows to start X with NumLock turned on"; 19 + license = licenses.mit; 20 + platforms = platforms.all; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 2426 2426 2427 2427 numdiff = callPackage ../tools/text/numdiff { }; 2428 2428 2429 + numlockx = callPackage ../tools/X11/numlockx { }; 2430 + 2429 2431 nssmdns = callPackage ../tools/networking/nss-mdns { }; 2430 2432 2431 2433 nwdiag = pythonPackages.nwdiag;