liquidtux: init at 2021-12-16 (#150997)

main
Nick Hu 2 years ago committed by GitHub
parent 19de041ccb
commit c9a191dd6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 33
      pkgs/os-specific/linux/liquidtux/default.nix
  2. 2
      pkgs/top-level/linux-kernels.nix

@ -0,0 +1,33 @@
{ lib, stdenv, fetchFromGitHub, kernel }:
stdenv.mkDerivation rec {
name = "liquidtux-${version}-${kernel.version}";
version = "unstable-2021-12-16";
src = fetchFromGitHub {
owner = "liquidctl";
repo = "liquidtux";
rev = "342defc0e22ea58f8ab2ab0f191ad3fd302c44cb";
sha256 = "12rc3vzfq8vnq9x9ca6swk5ag0xkpgkzmga8ga7q80mah9kxbaax";
};
hardeningDisable = [ "pic" ];
nativeBuildInputs = kernel.moduleBuildDependencies;
makeFlags = [
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];
installPhase = ''
install nzxt-grid3.ko nzxt-kraken2.ko nzxt-kraken3.ko nzxt-smart2.ko -Dm444 -t ${placeholder "out"}/lib/modules/${kernel.modDirVersion}/kernel/drivers/hwmon
'';
meta = with lib; {
description = "Linux kernel hwmon drivers for AIO liquid coolers and other devices";
homepage = "https://github.com/liquidctl/liquidtux";
license = licenses.gpl2;
platforms = [ "x86_64-linux" "i686-linux" ];
maintainers = with maintainers; [ nickhu ];
};
}

@ -296,6 +296,8 @@ in {
ena = callPackage ../os-specific/linux/ena {};
liquidtux = callPackage ../os-specific/linux/liquidtux {};
v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { };
lttng-modules = callPackage ../os-specific/linux/lttng-modules { };

Loading…
Cancel
Save