From da66a6917ba23e898eee82db1cb2cf0674e3bdcb Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Mon, 29 Sep 2025 21:17:30 -0400 Subject: [PATCH] Update amd-debug-tools to 0.2.8. --- nix/configuration/roles/amd_s2idle/package.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/nix/configuration/roles/amd_s2idle/package.nix b/nix/configuration/roles/amd_s2idle/package.nix index d47826f..9166301 100644 --- a/nix/configuration/roles/amd_s2idle/package.nix +++ b/nix/configuration/roles/amd_s2idle/package.nix @@ -8,7 +8,7 @@ }: let - version = "0.2.7"; + version = "0.2.8"; in python3Packages.buildPythonApplication { pname = "amd-debug-tools"; @@ -16,27 +16,28 @@ python3Packages.buildPythonApplication { pyproject = true; build-system = with python3Packages; [ - setuptools - setuptools-git-versioning - setuptools-git pyudev + setuptools + setuptools-git + setuptools-git-versioning ]; dependencies = with python3Packages; [ + acpica-tools cysystemd + dbus-fast + ethtool jinja2 + libdisplay-info matplotlib pandas pyudev seaborn tabulate - acpica-tools - ethtool - libdisplay-info ]; src = fetchgit { url = "https://git.kernel.org/pub/scm/linux/kernel/git/superm1/amd-debug-tools.git"; tag = version; - hash = "sha256-6X9cUKN0BkkKcYGU+YJYCGT+l5iUZDN+D8Fqq/ns98Q="; + hash = "sha256-EmXsW7Q5WMFL32LWr29W3GnGpw5aj53wlp9KbFV1r0Q="; leaveDotGit = true; }; @@ -52,6 +53,7 @@ python3Packages.buildPythonApplication { meta = { description = "Debug tools for AMD zen systems"; homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/superm1/amd-debug-tools.git/"; + changelog = "https://git.kernel.org/pub/scm/linux/kernel/git/superm1/amd-debug-tools.git/tag/?h=${version}"; license = lib.licenses.mit; platforms = lib.platforms.linux; };