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