pkgs/top-level/release-small.nix: make 'supportedSystems' an argument to this expression
This commit is contained in:
parent
9f4d510b6b
commit
a1a8458763
|
@ -2,11 +2,10 @@
|
||||||
the load on Hydra when testing the `stdenv-updates' branch. */
|
the load on Hydra when testing the `stdenv-updates' branch. */
|
||||||
|
|
||||||
{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
|
{ 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 {
|
with import ./release-lib.nix { inherit supportedSystems; };
|
||||||
supportedSystems = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "x86_64-freebsd" "i686-freebsd" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue