1/*
2 Helper expression for copy-tarballs. This returns (nearly) all
3 tarballs used the free packages in Nixpkgs.
4
5 Typical usage:
6
7 $ copy-tarballs.pl --expr 'import <nixpkgs/maintainers/scripts/all-tarballs.nix>'
8*/
9
10import ../../pkgs/top-level/release.nix {
11 # Don't apply ‘hydraJob’ to jobs, because then we can't get to the
12 # dependency graph.
13 scrubJobs = false;
14 # No need to evaluate on i686.
15 supportedSystems = [ "x86_64-linux" ];
16 bootstrapConfigs = [ ];
17}