input-utils: init at 1.3
This commit is contained in:
parent
1d9330d63a
commit
4a2bf9c4ec
30
pkgs/os-specific/linux/input-utils/default.nix
Normal file
30
pkgs/os-specific/linux/input-utils/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchurl, linuxHeaders }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "input-utils-${version}";
|
||||||
|
version = "1.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://www.kraxel.org/releases/input/input-${version}.tar.gz";
|
||||||
|
sha256 = "11w0pp20knx6qpgzmawdbk1nj2z3fzp8yd6nag6s8bcga16w6hli";
|
||||||
|
};
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
# Use proper include path for kernel include files.
|
||||||
|
substituteInPlace ./name.sh --replace "/usr/include/linux/" "${linuxHeaders}/include/linux/"
|
||||||
|
substituteInPlace ./lirc.sh --replace "/usr/include/linux/" "${linuxHeaders}/include/linux/"
|
||||||
|
'';
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"prefix=$(out)"
|
||||||
|
"STRIP=-s"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Input layer utilities, includes lsinput";
|
||||||
|
homepage = https://www.kraxel.org/blog/linux/input/;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ samueldr ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -3047,6 +3047,8 @@ with pkgs;
|
|||||||
|
|
||||||
innoextract = callPackage ../tools/archivers/innoextract { };
|
innoextract = callPackage ../tools/archivers/innoextract { };
|
||||||
|
|
||||||
|
input-utils = callPackage ../os-specific/linux/input-utils { };
|
||||||
|
|
||||||
intecture-agent = callPackage ../tools/admin/intecture/agent.nix { };
|
intecture-agent = callPackage ../tools/admin/intecture/agent.nix { };
|
||||||
|
|
||||||
intecture-auth = callPackage ../tools/admin/intecture/auth.nix { };
|
intecture-auth = callPackage ../tools/admin/intecture/auth.nix { };
|
||||||
|
Loading…
Reference in New Issue
Block a user