it87: init at 2018-08-14
This commit is contained in:
parent
4cb72751ea
commit
6b73e0e349
2 changed files with 38 additions and 0 deletions
36
pkgs/os-specific/linux/it87/default.nix
Normal file
36
pkgs/os-specific/linux/it87/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ stdenv, fetchFromGitHub, kernel }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "it87-${version}-${kernel.version}";
|
||||
version = "2018-08-14";
|
||||
|
||||
# The original was deleted from github, but this seems to be an active fork
|
||||
src = fetchFromGitHub {
|
||||
owner = "hannesha";
|
||||
repo = "it87";
|
||||
rev = "5515f5b78838cb6be551943ffef5d1792012724c";
|
||||
sha256 = "1ygi4mwds4q7byhg8gqnh3syamdj5rpjy3jj012k7vl54gdgrmgm";
|
||||
};
|
||||
|
||||
hardeningDisable = [ "pic" ];
|
||||
|
||||
nativeBuildInputs = kernel.moduleBuildDependencies;
|
||||
|
||||
preConfigure = ''
|
||||
sed -i 's|depmod|#depmod|' Makefile
|
||||
'';
|
||||
|
||||
makeFlags = [
|
||||
"TARGET=${kernel.modDirVersion}"
|
||||
"KERNEL_MODULES=${kernel.dev}/lib/modules/${kernel.modDirVersion}"
|
||||
"MODDESTDIR=$(out)/lib/modules/${kernel.modDirVersion}/kernel/drivers/hwmon"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Patched module for IT87xx superio chip sensors support";
|
||||
homepage = https://github.com/hannesha/it87;
|
||||
license = licenses.gpl2;
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
maintainers = with maintainers; [ yorickvp ];
|
||||
};
|
||||
}
|
|
@ -14760,6 +14760,8 @@ in
|
|||
|
||||
ixgbevf = callPackage ../os-specific/linux/ixgbevf {};
|
||||
|
||||
it87 = callPackage ../os-specific/linux/it87 {};
|
||||
|
||||
ena = callPackage ../os-specific/linux/ena {};
|
||||
|
||||
v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { };
|
||||
|
|
Loading…
Reference in a new issue