 d1590482cf
			
		
	
	
		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
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, stdenv, fetchurl, patchelf, perl, ncurses, expat, python, zlib
 | |
| , xlibs, gtk2, glib, fontconfig, freetype, unixODBC, alsaLib, glibc
 | |
| # generic inputs
 | |
| , version, sha256, url ? null, ...
 | |
| } :
 | |
| 
 | |
| let
 | |
|   # eg, 5.5.22 => 5_5
 | |
|   mkShort = let str  = stdenv.lib.strings;
 | |
|                 take = stdenv.lib.lists.take;
 | |
|             in v: str.concatStringsSep "_" (take 2 (str.splitString "." v));
 | |
|   shortVer = mkShort version;
 | |
| in stdenv.mkDerivation rec {
 | |
|   name = "cudatoolkit-${version}";
 | |
| 
 | |
|   dontPatchELF = true;
 | |
|   dontStrip = true;
 | |
| 
 | |
|   src =
 | |
|     if stdenv.system == "x86_64-linux" then
 | |
|       fetchurl {
 | |
|         url = if url != null then url else "http://developer.download.nvidia.com/compute/cuda/${shortVer}/rel/installers/cuda_${version}_linux_64.run";
 | |
|         sha256 = sha256;
 | |
|       }
 | |
|     else throw "cudatoolkit does not support platform ${stdenv.system}";
 | |
| 
 | |
|   outputs = [ "out" "sdk" ];
 | |
| 
 | |
|   buildInputs = [ perl ];
 | |
| 
 | |
|   runtimeDependencies = [
 | |
|     ncurses expat python zlib glibc
 | |
|     xlibs.libX11 xlibs.libXext xlibs.libXrender xlibs.libXt xlibs.libXtst xlibs.libXi xlibs.libXext
 | |
|     gtk2 glib fontconfig freetype unixODBC alsaLib
 | |
|   ];
 | |
| 
 | |
|   rpath = "${stdenv.lib.makeLibraryPath runtimeDependencies}:${stdenv.cc.cc}/lib64";
 | |
| 
 | |
|   unpackPhase = ''
 | |
|     sh $src --keep --noexec
 | |
|     cd pkg/run_files
 | |
|     sh cuda-linux64-rel-${version}-*.run --keep --noexec
 | |
|     sh cuda-samples-linux-${version}-*.run --keep --noexec
 | |
|     cd pkg
 | |
|   '';
 | |
| 
 | |
|   buildPhase = ''
 | |
|     find . -type f -executable -exec patchelf \
 | |
|       --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
 | |
|       '{}' \; || true
 | |
|     find . -type f -exec patchelf \
 | |
|       --set-rpath $rpath:$out/jre/lib/amd64/jli:$out/lib:$out/lib64:$out/nvvm/lib:$out/nvvm/lib64:$(cat $NIX_CC/nix-support/orig-cc)/lib \
 | |
|       --force-rpath \
 | |
|       '{}' \; || true
 | |
|   '';
 | |
| 
 | |
|   installPhase = ''
 | |
|     mkdir $out $sdk
 | |
|     perl ./install-linux.pl --prefix="$out"
 | |
|     rm $out/tools/CUDA_Occupancy_Calculator.xls
 | |
|     perl ./install-sdk-linux.pl --prefix="$sdk" --cudaprefix="$out"
 | |
|     mv $out/include $out/usr_include
 | |
| 
 | |
|     # let's remove the 32-bit libraries, they confuse the lib64->lib mover
 | |
|     rm -rf $out/lib
 | |
|   '';
 | |
| 
 | |
|   setupHook = ./setup-hook.sh;
 | |
| 
 | |
|   meta = {
 | |
|     license = lib.licenses.unfree;
 | |
|   };
 | |
| }
 |