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
163 B
Nix
6 lines
163 B
Nix
{ callPackage, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "6.5.19";
|
|
sha256 = "1x9zdmk8z784d3d35vr2ak1l4h5v4jfjhpxfi9fl9dvjkcavqyaj";
|
|
})
|