Merge pull request #306439 from Atemu/update/nct6687d

linuxPackages.nct6687d: unstable-2023-09-22 -> 0-unstable-2024-02-23
This commit is contained in:
Atemu 2024-04-24 14:37:07 +02:00 committed by GitHub
commit a08357633a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 3 deletions

View File

@ -2,17 +2,18 @@
, stdenv
, fetchFromGitHub
, kernel
, nix-update-script
}:
stdenv.mkDerivation rec {
pname = "nct6687d";
version = "unstable-2023-09-22";
version = "0-unstable-2024-02-23";
src = fetchFromGitHub {
owner = "Fred78290";
repo = "nct6687d";
rev = "cdfe855342a9383a9c4c918d51576c36d989070d";
hash = "sha256-iOLWxj4I6oYkNXFSkmw7meTQEnrIfb4Mw+/LkzgzDxM=";
rev = "0ee35ed9541bde22fe219305d1647b51ed010c5e";
hash = "sha256-g81U+ngnsOslBDCQP51uDDyHPpCv9T/j+KmFUAQfz/M=";
};
setSourceRoot = ''
@ -30,6 +31,10 @@ stdenv.mkDerivation rec {
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 ];