2024-12-10 20:27:17 +01:00
|
|
|
|
/*
|
|
|
|
|
Helper expression for copy-tarballs. This returns (nearly) all
|
|
|
|
|
tarballs used the free packages in Nixpkgs.
|
2015-12-16 13:59:02 +01:00
|
|
|
|
|
2024-12-10 20:27:17 +01:00
|
|
|
|
Typical usage:
|
2015-12-16 13:59:02 +01:00
|
|
|
|
|
2024-12-10 20:27:17 +01:00
|
|
|
|
$ copy-tarballs.pl --expr 'import <nixpkgs/maintainers/scripts/all-tarballs.nix>'
|
2015-12-16 13:59:02 +01:00
|
|
|
|
*/
|
|
|
|
|
|
2024-12-10 20:27:17 +01:00
|
|
|
|
import ../../pkgs/top-level/release.nix {
|
|
|
|
|
# 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" ];
|
|
|
|
|
bootstrapConfigs = [ ];
|
|
|
|
|
}
|