about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliButz <wbutz@cyberfnord.de>2018-10-01 23:08:07 +0200
committerRobin Gloster <mail@glob.in>2018-10-01 23:40:21 +0200
commit781206217e7ebf46a6b98b1a229022e34ec3b0cf (patch)
tree524df6c55c896dc350ead405bbbe3563075cab97
parent9dbb71b1d32ae7418875c052515ff9b2bf5cd645 (diff)
downloadnixlib-781206217e7ebf46a6b98b1a229022e34ec3b0cf.tar
nixlib-781206217e7ebf46a6b98b1a229022e34ec3b0cf.tar.gz
nixlib-781206217e7ebf46a6b98b1a229022e34ec3b0cf.tar.bz2
nixlib-781206217e7ebf46a6b98b1a229022e34ec3b0cf.tar.lz
nixlib-781206217e7ebf46a6b98b1a229022e34ec3b0cf.tar.xz
nixlib-781206217e7ebf46a6b98b1a229022e34ec3b0cf.tar.zst
nixlib-781206217e7ebf46a6b98b1a229022e34ec3b0cf.zip
nvtop: use version-independent libnvidia-ml.so symlink
-rw-r--r--pkgs/tools/system/nvtop/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/nvtop/default.nix b/pkgs/tools/system/nvtop/default.nix
index 054de73c080f..0b4a33e43853 100644
--- a/pkgs/tools/system/nvtop/default.nix
+++ b/pkgs/tools/system/nvtop/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
 
   cmakeFlags = [
     "-DNVML_INCLUDE_DIRS=${cudatoolkit}/include"
-    "-DNVML_LIBRARIES=${nvidia_x11}/lib/libnvidia-ml.so.390.67"
+    "-DNVML_LIBRARIES=${nvidia_x11}/lib/libnvidia-ml.so"
     "-DCMAKE_BUILD_TYPE=Release"
   ];