python312Packages.vdf: avoid using pname for src.repo
[NixPkgs.git] / pkgs / os-specific / linux / system76-acpi / default.nix
blobb384cf6394872ac7d50234788d097f77c3578127
1 { lib, stdenv, fetchFromGitHub, kernel }:
2 let
3   version = "1.0.2";
4   sha256 = "1i7zjn5cdv9h00fgjg46b8yrz4d3dqvfr25g3f13967ycy58m48h";
5 in
6 stdenv.mkDerivation {
7   name = "system76-acpi-module-${version}-${kernel.version}";
9   passthru.moduleName = "system76_acpi";
11   src = fetchFromGitHub {
12     owner = "pop-os";
13     repo = "system76-acpi-dkms";
14     rev = version;
15     inherit sha256;
16   };
18   hardeningDisable = [ "pic" ];
20   nativeBuildInputs = kernel.moduleBuildDependencies;
22   buildFlags = [
23     "KERNEL_DIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
24   ];
26   installPhase = ''
27     install -D system76_acpi.ko $out/lib/modules/${kernel.modDirVersion}/misc/system76_acpi.ko
28     mkdir -p $out/lib/udev/hwdb.d
29     mv lib/udev/hwdb.d/* $out/lib/udev/hwdb.d
30   '';
32   meta = with lib; {
33     maintainers = [ maintainers.khumba ];
34     license = [ licenses.gpl2Only ];
35     platforms = [ "i686-linux" "x86_64-linux" ];
36     broken = kernel.kernelOlder "5.2";
37     description = "System76 ACPI Driver (DKMS)";
38     homepage = "https://github.com/pop-os/system76-acpi-dkms";
39     longDescription = ''
40       This provides the system76_acpi in-tree driver for systems missing it.
41     '';
42   };