Files
nixpkgs/pkgs/os-specific/linux/ithc/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

42 lines
1009 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
kernel,
kernelModuleMakeFlags,
}:
stdenv.mkDerivation rec {
pname = "ithc";
version = "unstable-2022-06-07";
src = fetchFromGitHub {
owner = "quo";
repo = "ithc-linux";
rev = "5af2a2213d2f3d944b19ec7ccdb96f16d56adddb";
hash = "sha256-p4TooWUOWPfNdePE18ESmRJezPDAl9nLb55LQtkJiSg=";
};
nativeBuildInputs = kernel.moduleBuildDependencies;
makeFlags = kernelModuleMakeFlags ++ [
"VERSION=${version}"
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];
postPatch = ''
sed -i ./Makefile -e '/depmod/d'
'';
installFlags = [ "INSTALL_MOD_PATH=${placeholder "out"}" ];
meta = {
description = "Linux driver for Intel Touch Host Controller";
homepage = "https://github.com/quo/ithc-linux";
license = lib.licenses.publicDomain;
maintainers = with lib.maintainers; [ aacebedo ];
platforms = lib.platforms.linux;
broken = kernel.kernelOlder "5.9" || kernel.kernelAtLeast "6.10";
};
}