1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

Merge pull request #24981 from Ericson2314/fix

release-cross: Fix typo preventing evaluation
This commit is contained in:
John Ericson 2017-04-17 20:54:32 -04:00 committed by GitHub
commit 1832a34a9a

View file

@ -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);