summary refs log tree commit diff
path: root/pkgs/top-level/release-cross.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-01-16 18:28:21 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-01-16 18:48:54 +0200
commit82cab72dd41cf3e243a76bdbbe2ba9631e9ffa5a (patch)
treea9ab98a04d66260ce27f3d968e307f1864dc957d /pkgs/top-level/release-cross.nix
parent822c9498339ac63b16da4bd385ce551ddfe03171 (diff)
downloadnixlib-82cab72dd41cf3e243a76bdbbe2ba9631e9ffa5a.tar
nixlib-82cab72dd41cf3e243a76bdbbe2ba9631e9ffa5a.tar.gz
nixlib-82cab72dd41cf3e243a76bdbbe2ba9631e9ffa5a.tar.bz2
nixlib-82cab72dd41cf3e243a76bdbbe2ba9631e9ffa5a.tar.lz
nixlib-82cab72dd41cf3e243a76bdbbe2ba9631e9ffa5a.tar.xz
nixlib-82cab72dd41cf3e243a76bdbbe2ba9631e9ffa5a.tar.zst
nixlib-82cab72dd41cf3e243a76bdbbe2ba9631e9ffa5a.zip
release-lib: forAllSupportedSystems -> forTheseSystems
I'm going to move forAllSystems from nixos/release.nix, and these
functions sound too similar while doing different things.
Diffstat (limited to 'pkgs/top-level/release-cross.nix')
-rw-r--r--pkgs/top-level/release-cross.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix
index ce6fba9c40f3..f6b2ecfb5dbe 100644
--- a/pkgs/top-level/release-cross.nix
+++ b/pkgs/top-level/release-cross.nix
@@ -75,7 +75,7 @@ in
         f (["buildPackages"] ++ path) { inherit system crossSystem; }
       );
 
-    testEqual = path: systems: forAllSupportedSystems systems (testEqualOne path);
+    testEqual = path: systems: forTheseSystems systems (testEqualOne path);
 
     mapTestEqual = lib.mapAttrsRecursive testEqual;