python312Packages.vdf: avoid using pname for src.repo
[NixPkgs.git] / pkgs / os-specific / linux / nct6687d / default.nix
blob7a3700d4c3184fbd677b85b708d00af1bed65037
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , kernel
5 , nix-update-script
6 }:
8 stdenv.mkDerivation rec {
9   pname = "nct6687d";
10   version = "0-unstable-2024-09-02";
12   src = fetchFromGitHub {
13     owner = "Fred78290";
14     repo = "nct6687d";
15     rev = "f45b72a6ca335e20f8a2df5ee5d4e130916150d0";
16     hash = "sha256-2sAL6aXUafmm2DKIhqEoTSPZVmzu/lnTkpPznJndX3o=";
17   };
19   setSourceRoot = ''
20     export sourceRoot=$(pwd)/source
21   '';
23   nativeBuildInputs = kernel.moduleBuildDependencies;
25   makeFlags = kernel.makeFlags ++ [
26     "-C" "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
27     "M=$(sourceRoot)"
28   ];
30   buildFlags = [ "modules" ];
31   installFlags = [ "INSTALL_MOD_PATH=${placeholder "out"}" ];
32   installTargets = [ "modules_install" ];
34   passthru.updateScript = nix-update-script {
35     extraArgs = [ "--version=branch=main" ];
36   };
38   meta = with lib; {
39     description = "Kernel module for the Nuvoton NCT6687-R chipset found on many B550/B650 motherboards from ASUS and MSI";
40     license = with licenses; [ gpl2Only ];
41     homepage = "https://github.com/Fred78290/nct6687d/";
42     platforms = platforms.linux;
43     maintainers = with maintainers; [ atemu ];
44   };