summary refs log tree commit diff
path: root/pkgs/test
diff options
context:
space:
mode:
authorDavid Guibert <david.guibert@gmail.com>2022-10-04 08:29:08 +0200
committerDavid Guibert <david.guibert@gmail.com>2022-10-04 08:29:08 +0200
commit4f43356eb7b2c867ba21d94b550dbc124564b70e (patch)
treeb1c6a681c4997979e552a6b2ec51f4aa38c2c248 /pkgs/test
parentfeccefa6840b0f7f55c9025f992cd11815b8bc78 (diff)
downloadnixpkgs-4f43356eb7b2c867ba21d94b550dbc124564b70e.tar
nixpkgs-4f43356eb7b2c867ba21d94b550dbc124564b70e.tar.gz
nixpkgs-4f43356eb7b2c867ba21d94b550dbc124564b70e.tar.bz2
nixpkgs-4f43356eb7b2c867ba21d94b550dbc124564b70e.tar.lz
nixpkgs-4f43356eb7b2c867ba21d94b550dbc124564b70e.tar.xz
nixpkgs-4f43356eb7b2c867ba21d94b550dbc124564b70e.tar.zst
nixpkgs-4f43356eb7b2c867ba21d94b550dbc124564b70e.zip
cuda-samples: throw an error for tag 11.7
Diffstat (limited to 'pkgs/test')
-rw-r--r--pkgs/test/cuda/cuda-samples/extension.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/test/cuda/cuda-samples/extension.nix b/pkgs/test/cuda/cuda-samples/extension.nix
index 167b6483bb7..9ffca188cb2 100644
--- a/pkgs/test/cuda/cuda-samples/extension.nix
+++ b/pkgs/test/cuda/cuda-samples/extension.nix
@@ -13,7 +13,7 @@ final: prev: let
     "11.6" = "sha256-AsLNmAplfuQbXg9zt09tXAuFJ524EtTYsQuUlV1tPkE=";
     # the tag 11.7 does not exists: see https://github.com/NVIDIA/cuda-samples/issues/128
     # maybe fixed by https://github.com/NVIDIA/cuda-samples/pull/133
-    "11.7" = prev.lib.fakeSha256;
+    "11.7" = throw "The tag 11.7 of cuda-samples does not exists (see see https://github.com/NVIDIA/cuda-samples/issues/128)";
   }.${prev.cudaVersion};
 
 in {