From 9169f3c92471702b48a9553f7438a1b3018339de Mon Sep 17 00:00:00 2001 From: John Ericson Date: Mon, 17 Apr 2017 20:22:37 -0400 Subject: [PATCH] release-cross: Fix typo preventing evaluation --- pkgs/top-level/release-cross.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix index 67f3d55fa16..a7adb3ffedc 100644 --- a/pkgs/top-level/release-cross.nix +++ b/pkgs/top-level/release-cross.nix @@ -50,7 +50,7 @@ in in assertTrue ( f path { inherit system; } == - f (["buildPackages"] ++ path) { inherit system crossSystem; }; + f (["buildPackages"] ++ path) { inherit system crossSystem; } ); testEqual = path: systems: forAllSupportedSystems systems (testEqualOne path);