2015-12-16 12:59:02 +00:00
|
|
|
|
/* Helper expression for copy-tarballs. This returns (nearly) all
|
|
|
|
|
tarballs used the free packages in Nixpkgs.
|
|
|
|
|
|
|
|
|
|
Typical usage:
|
|
|
|
|
|
|
|
|
|
$ copy-tarballs.pl --expr 'import <nixpkgs/maintainers/scripts/all-tarballs.nix>'
|
|
|
|
|
*/
|
|
|
|
|
|
2018-07-04 16:21:33 +01:00
|
|
|
|
import ../../pkgs/top-level/release.nix
|
2015-12-16 12:59:02 +00:00
|
|
|
|
{ # Don't apply ‘hydraJob’ to jobs, because then we can't get to the
|
|
|
|
|
# dependency graph.
|
|
|
|
|
scrubJobs = false;
|
|
|
|
|
# No need to evaluate on i686.
|
|
|
|
|
supportedSystems = [ "x86_64-linux" ];
|
2018-07-04 16:21:33 +01:00
|
|
|
|
limitedSupportedSystems = [];
|
|
|
|
|
}
|