2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, linuxHeaders }:
|
2018-05-06 20:19:41 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "input-utils";
|
2018-05-06 20:19:41 +01:00
|
|
|
version = "1.3";
|
2021-01-19 21:20:11 +00:00
|
|
|
|
2018-05-06 20:19:41 +01:00
|
|
|
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)"
|
2020-06-05 23:52:47 +01:00
|
|
|
"STRIP="
|
2018-05-06 20:19:41 +01:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-05-06 20:19:41 +01:00
|
|
|
description = "Input layer utilities, includes lsinput";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.kraxel.org/blog/linux/input/";
|
2018-05-06 20:19:41 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ samueldr ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|