d1590482cf
There is not much different between the cudatoolkit expressions: pkgs/development/compilers/cudatoolkit/5.5.nix pkgs/development/compilers/cudatoolkit/6.0.nix pkgs/development/compilers/cudatoolkit/6.5.nix This commit removes those and replaces them with pkgs/development/compilers/cudatoolkit/generic.nix and adds cudatoolkit version 7
6 lines
175 B
Nix
6 lines
175 B
Nix
{ callPackage, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "5.5.22";
|
|
sha256 = "b997e1dbe95704e0e806e0cedc5fd370a385351fef565c7bae0917baf3a29aa4";
|
|
})
|