about summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2021-09-02 13:03:18 -0700
committerBernardo Meurer <bernardo@meurer.org>2021-09-02 13:08:44 -0700
commitfae3bbca9b273097e71aa8615422faff169d4a91 (patch)
treeb77e57fcf4e2bd794271c25db1c0a12e785db714 /pkgs/tools/system
parent9d96c4004821ca5c97399bbfda65108c634d297c (diff)
rocm-smi: 4.1.0 -> 4.3.1
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/rocm-smi/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/system/rocm-smi/default.nix b/pkgs/tools/system/rocm-smi/default.nix
index de9afdae29407..bbee315e9c700 100644
--- a/pkgs/tools/system/rocm-smi/default.nix
+++ b/pkgs/tools/system/rocm-smi/default.nix
@@ -1,17 +1,17 @@
-{ lib, stdenv, fetchFromGitHub, cmake, python3 }:
+{ lib, stdenv, fetchFromGitHub, cmake, wrapPython }:
 
 stdenv.mkDerivation rec {
   pname = "rocm-smi";
-  version = "4.1.0";
+  version = "4.3.1";
 
   src = fetchFromGitHub {
     owner = "RadeonOpenCompute";
     repo = "rocm_smi_lib";
     rev = "rocm-${version}";
-    hash = "sha256-LEaC1XhmyoVWrpL05MhgN02LVT2rLKdnw9g2QdfM/uE=";
+    hash = "sha256-Ckno73Otkc9rHEUkSgNoOui+6ZHGUF+B9iAoe0NQH0c=";
   };
 
-  nativeBuildInputs = [ cmake python3.pkgs.wrapPython ];
+  nativeBuildInputs = [ cmake wrapPython ];
 
   postPatch = ''
     # Upstream ROCm is installed in an /opt directory. For this reason,
@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
     description = "System management interface for AMD GPUs supported by ROCm";
     homepage = "https://github.com/RadeonOpenCompute/ROC-smi";
     license = with licenses; [ mit ];
-    maintainers = with maintainers; [ ];
+    maintainers = with maintainers; [ lovesegfault ];
     platforms = [ "x86_64-linux" ];
   };
 }