{ lib , stdenv , fetchFromGitHub , kernel , nix-update-script }: stdenv.mkDerivation rec { pname = "nct6687d"; version = "0-unstable-2024-02-23"; src = fetchFromGitHub { owner = "Fred78290"; repo = "nct6687d"; rev = "0ee35ed9541bde22fe219305d1647b51ed010c5e"; hash = "sha256-g81U+ngnsOslBDCQP51uDDyHPpCv9T/j+KmFUAQfz/M="; }; setSourceRoot = '' export sourceRoot=$(pwd)/source ''; nativeBuildInputs = kernel.moduleBuildDependencies; makeFlags = kernel.makeFlags ++ [ "-C" "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" "M=$(sourceRoot)" ]; buildFlags = [ "modules" ]; installFlags = [ "INSTALL_MOD_PATH=${placeholder "out"}" ]; installTargets = [ "modules_install" ]; passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch=main" ]; }; meta = with lib; { description = "Kernel module for the Nuvoton NCT6687-R chipset found on many B550/B650 motherboards from ASUS and MSI"; license = with licenses; [ gpl2Only ]; homepage = "https://github.com/Fred78290/nct6687d/"; platforms = platforms.linux; maintainers = with maintainers; [ atemu ]; }; }