4 This release file will not be tested on hydra.nixos.org
5 because it requires unfree software.
7 Test for example like this:
9 $ hydra-eval-jobs pkgs/top-level/release-cuda.nix --option restrict-eval false -I foo=. --arg nixpkgs '{ outPath = ./.; revCount = 0; shortRev = "aabbcc"; }'
13 { # The platforms for which we build Nixpkgs.
17 , # Attributes passed to nixpkgs.
18 nixpkgsArgs ? { config = { allowUnfree = true; inHydra = true; }; }
21 with import ./release-lib.nix {inherit supportedSystems nixpkgsArgs; };
25 # Package sets to evaluate
42 evalPackageSet = pset: mapTestOn { ${pset} = packagePlatforms pkgs.${pset}; };
45 # Packages to evaluate
46 python3.pkgs.caffeWithCuda = linux;
47 python3.pkgs.jaxlibWithCuda = linux;
48 python3.pkgs.libgpuarray = linux;
49 python3.pkgs.tensorflowWithCuda = linux;
50 python3.pkgs.pyrealsense2WithCuda = linux;
51 python3.pkgs.torchWithCuda = linux;
52 python3.pkgs.jaxlib = linux;
53 }) // (genAttrs packageSets evalPackageSet));