summaryrefslogtreecommitdiffstats
path: root/maintainers/scripts/all-tarballs.nix
blob: df89012c603010451ea38c3f5bcd50d89828baa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
  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>'
*/

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 = [ ];
}