From a1a845876314d4244315d809df99dee41d000011 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 5 Apr 2013 10:21:41 +0200 Subject: pkgs/top-level/release-small.nix: make 'supportedSystems' an argument to this expression --- pkgs/top-level/release-small.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'pkgs/top-level/release-small.nix') diff --git a/pkgs/top-level/release-small.nix b/pkgs/top-level/release-small.nix index a2a10ab7561..516141fa003 100644 --- a/pkgs/top-level/release-small.nix +++ b/pkgs/top-level/release-small.nix @@ -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; }; { -- cgit 1.4.1