mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
31 lines
883 B
Nix
31 lines
883 B
Nix
{ stdenv, fetchurl, linuxHeaders }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "input-utils";
|
|
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;
|
|
};
|
|
}
|