summary refs log tree commit diff
path: root/pkgs/test
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2021-04-18 11:55:10 +0200
committerDaniël de Kok <me@danieldk.eu>2021-04-18 11:55:10 +0200
commitf75286e0638047455f012fa2b3e87c3bf16e7446 (patch)
tree01b9109438a56da6c504b27896e7d84ce8c3e758 /pkgs/test
parentc6df94ce561456492babc7628042fdc1c5fa0d5a (diff)
downloadnixpkgs-f75286e0638047455f012fa2b3e87c3bf16e7446.tar
nixpkgs-f75286e0638047455f012fa2b3e87c3bf16e7446.tar.gz
nixpkgs-f75286e0638047455f012fa2b3e87c3bf16e7446.tar.bz2
nixpkgs-f75286e0638047455f012fa2b3e87c3bf16e7446.tar.lz
nixpkgs-f75286e0638047455f012fa2b3e87c3bf16e7446.tar.xz
nixpkgs-f75286e0638047455f012fa2b3e87c3bf16e7446.tar.zst
nixpkgs-f75286e0638047455f012fa2b3e87c3bf16e7446.zip
cudatoolkit-{9,9_0,9_1,9_2}: remove
Remove old CUDA toolkits (and corresponding CuDNN versions).

- Not supported by upstream anymore.
- We do not use them in nixpkgs.
- We do not test or actively maintain them.
- Anything but ancient GPUs is supported by newer toolkits.

Fixes #107131.
Diffstat (limited to 'pkgs/test')
-rw-r--r--pkgs/test/cuda/cuda-samples/default.nix8
-rw-r--r--pkgs/test/cuda/default.nix2
2 files changed, 0 insertions, 10 deletions
diff --git a/pkgs/test/cuda/cuda-samples/default.nix b/pkgs/test/cuda/cuda-samples/default.nix
index 46d4d531690..1a361c57214 100644
--- a/pkgs/test/cuda/cuda-samples/default.nix
+++ b/pkgs/test/cuda/cuda-samples/default.nix
@@ -1,17 +1,9 @@
 { callPackage
-, cudatoolkit_9_2
 , cudatoolkit_10_0, cudatoolkit_10_1, cudatoolkit_10_2
 , cudatoolkit_11_0, cudatoolkit_11_1, cudatoolkit_11_2
 }:
 
 rec {
-  cuda-samples_cudatoolkit_9_2 = callPackage ./generic.nix {
-    cudatoolkit = cudatoolkit_9_2;
-    sha256 = "1ydankhyigcg99h0rqnmz1z4vc0sl6p9s1s0hbdxh5l1sx9141j6";
-  };
-
-  cuda-samples_cudatoolkit_9 = cuda-samples_cudatoolkit_9_2;
-
   ##
 
   cuda-samples_cudatoolkit_10_0 = callPackage ./generic.nix {
diff --git a/pkgs/test/cuda/default.nix b/pkgs/test/cuda/default.nix
index 9e7eaf8036a..aac52e6a4f5 100644
--- a/pkgs/test/cuda/default.nix
+++ b/pkgs/test/cuda/default.nix
@@ -3,8 +3,6 @@
 rec {
   cuda-samplesPackages = callPackage ./cuda-samples { };
   inherit (cuda-samplesPackages)
-    cuda-samples_cudatoolkit_9
-    cuda-samples_cudatoolkit_9_2
     cuda-samples_cudatoolkit_10
     cuda-samples_cudatoolkit_10_0
     cuda-samples_cudatoolkit_10_1