diff --git a/pkgs/os-specific/linux/ryzen-smu/default.nix b/pkgs/os-specific/linux/ryzen-smu/default.nix index 40226010ec9e..c0704ffe41d2 100644 --- a/pkgs/os-specific/linux/ryzen-smu/default.nix +++ b/pkgs/os-specific/linux/ryzen-smu/default.nix @@ -6,17 +6,17 @@ }: let - version = "0.1.5-unstable-2024-01-03"; + version = "0.1.5-unstable-2025-06-04"; ## Upstream has not been merging PRs. ## Nixpkgs maintainers are providing a ## repo with PRs merged until upstream is ## updated. src = fetchFromGitHub { - owner = "Cryolitia"; + owner = "amkillam"; repo = "ryzen_smu"; - rev = "ce1aa918efa33ca79998f0f7d467c04d4b07016c"; - hash = "sha256-s9SSmbL6ixWqZUKEhrZdxN4xoWgk+8ClZPoKq2FDAAE="; + rev = "9f9569f889935f7c7294cc32c1467e5a4081701a"; + hash = "sha256-i8T0+kUYsFMzYO3h6ffUXP1fgGOXymC4Ml2dArQLOdk="; }; monitor-cpu = stdenv.mkDerivation { @@ -59,13 +59,14 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Linux kernel driver that exposes access to the SMU (System Management Unit) for certain AMD Ryzen Processors"; - homepage = "https://gitlab.com/leogx9r/ryzen_smu"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + homepage = "https://github.com/amkillam/ryzen_smu"; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ Cryolitia phdyellow + aleksana ]; platforms = [ "x86_64-linux" ]; mainProgram = "monitor_cpu";