mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
23 lines
543 B
Nix
23 lines
543 B
Nix
{ lib, stdenv, fetchFromGitHub, autoconf, libX11, libXext }:
|
|
|
|
stdenv.mkDerivation {
|
|
version = "1.2";
|
|
pname = "numlockx";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rg3";
|
|
repo = "numlockx";
|
|
rev = "9159fd3c5717c595dadfcb33b380a85c88406185";
|
|
hash = "sha256-wrHBelxEADUKugmtR8loWaJ/6s5U4PBBz8V+Dr1yifA=";
|
|
};
|
|
|
|
buildInputs = [ libX11 libXext autoconf ];
|
|
|
|
meta = {
|
|
description = "Allows to start X with NumLock turned on";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.all;
|
|
mainProgram = "numlockx";
|
|
};
|
|
}
|