Merge pull request #172786 from danielfullmer/cudnn-src

cudaPackages.cudnn: fix source fetching

authored by Samuel Ainsworth and committed by GitHub 36342ac7 965f51d8

+3 -3
+3 -3
pkgs/development/libraries/science/math/cudnn/generic.nix
··· 21 21 22 22 { fullVersion 23 23 , url 24 - , hash ? null 25 - , sha256 ? null 24 + , hash ? "" 25 + , sha256 ? "" 26 26 , supportedCudaVersions ? [ ] 27 27 }: 28 28 29 - assert (hash != null) || (sha256 != null); 29 + assert (hash != "") || (sha256 != ""); 30 30 31 31 assert useCudatoolkitRunfile || (libcublas != null); 32 32