about summary refs log tree commit diff
path: root/pkgs/development/cuda-modules
diff options
context:
space:
mode:
authorSomeone <sergei.kozlukov@aalto.fi>2024-01-11 00:51:23 +0000
committerGitHub <noreply@github.com>2024-01-11 00:51:23 +0000
commit7953a7864187f7e70dad957719f5039e261e20a7 (patch)
tree6ae51c215d353cc5f313e6793b348d76a399b575 /pkgs/development/cuda-modules
parent2f7f9e4ae3bead5b6a2b9939298c518b463fb61f (diff)
parent35de6f1c4eb4e983fe39a5407db7c831fea675f7 (diff)
downloadnixlib-7953a7864187f7e70dad957719f5039e261e20a7.tar
nixlib-7953a7864187f7e70dad957719f5039e261e20a7.tar.gz
nixlib-7953a7864187f7e70dad957719f5039e261e20a7.tar.bz2
nixlib-7953a7864187f7e70dad957719f5039e261e20a7.tar.lz
nixlib-7953a7864187f7e70dad957719f5039e261e20a7.tar.xz
nixlib-7953a7864187f7e70dad957719f5039e261e20a7.tar.zst
nixlib-7953a7864187f7e70dad957719f5039e261e20a7.zip
Merge pull request #280076 from SomeoneSerge/fix/apptainer-nv-cherry
apptainer: unbreak --nv (userns+nvliblist.conf variant)
Diffstat (limited to 'pkgs/development/cuda-modules')
-rw-r--r--pkgs/development/cuda-modules/saxpy/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/cuda-modules/saxpy/default.nix b/pkgs/development/cuda-modules/saxpy/default.nix
index 73e17b28757b..9c6692cb0b31 100644
--- a/pkgs/development/cuda-modules/saxpy/default.nix
+++ b/pkgs/development/cuda-modules/saxpy/default.nix
@@ -36,7 +36,9 @@ backendStdenv.mkDerivation {
   buildInputs =
     lib.optionals (lib.versionOlder cudaVersion "11.4") [cudatoolkit]
     ++ lib.optionals (lib.versionAtLeast cudaVersion "11.4") [
-      libcublas
+      libcublas.dev
+      libcublas.lib
+      libcublas.static
       cuda_cudart
     ]
     ++ lib.optionals (lib.versionAtLeast cudaVersion "12.0") [cuda_cccl];