Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib }: 2{ 3 # See ./cuda.nix for documentation. 4 inherit (import ./cuda.nix { inherit lib; }) 5 cudaCapabilityToInfo 6 ; 7 8 # See ./nvcc.nix for documentation. 9 inherit (import ./nvcc.nix) 10 nvccCompatibilities 11 ; 12 13 # See ./redist.nix for documentation. 14 inherit (import ./redist.nix) 15 redistNames 16 redistSystems 17 redistUrlPrefix 18 ; 19 20 /** 21 The path to the CUDA packages root directory, for use with `callPackage` to create new package sets. 22 23 # Type 24 25 ``` 26 cudaPackagesPath :: Path 27 ``` 28 */ 29 cudaPackagesPath = ./../../..; 30}