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
7 lines
175 B
Nix
7 lines
175 B
Nix
{ callPackage, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "6.0.37";
|
|
sha256 = "991e436c7a6c94ec67cf44204d136adfef87baa3ded270544fa211179779bc40";
|
|
})
|