567e8dfd8e
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>
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
kernel,
|
|
kernelModuleMakeFlags,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "it87-${version}-${kernel.version}";
|
|
version = "unstable-2024-06-09";
|
|
|
|
# Original is no longer maintained.
|
|
# This is the same upstream as the AUR uses.
|
|
src = fetchFromGitHub {
|
|
owner = "frankcrawford";
|
|
repo = "it87";
|
|
rev = "a82899557b4779b87d444a43caf126615e03bb4a";
|
|
hash = "sha256-aMMK3QoeXr6mPbo4SDXE8UuWc/oJ3lpgyK7wyEDKaEM=";
|
|
};
|
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
|
|
preConfigure = ''
|
|
sed -i 's|depmod|#depmod|' Makefile
|
|
'';
|
|
|
|
makeFlags = kernelModuleMakeFlags ++ [
|
|
"TARGET=${kernel.modDirVersion}"
|
|
"KERNEL_MODULES=${kernel.dev}/lib/modules/${kernel.modDirVersion}"
|
|
"MODDESTDIR=$(out)/lib/modules/${kernel.modDirVersion}/kernel/drivers/hwmon"
|
|
];
|
|
|
|
meta = {
|
|
description = "Patched module for IT87xx superio chip sensors support";
|
|
homepage = "https://github.com/frankcrawford/it87";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"i686-linux"
|
|
];
|
|
teams = [ lib.teams.lumiguide ];
|
|
};
|
|
}
|