3
0
Fork 0
forked from mirrors/nixpkgs

pkgs/top-level/release-small.nix: make 'supportedSystems' an argument to this expression

This commit is contained in:
Peter Simons 2013-04-05 10:21:41 +02:00
parent 9f4d510b6b
commit a1a8458763

View file

@ -2,11 +2,10 @@
the load on Hydra when testing the `stdenv-updates' branch. */
{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
, supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "x86_64-freebsd" "i686-freebsd" ]
}:
with import ./release-lib.nix {
supportedSystems = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "x86_64-freebsd" "i686-freebsd" ];
};
with import ./release-lib.nix { inherit supportedSystems; };
{