nixos/release.nix: Move forAllSystems to release-lib

There's already a similar forTheseSystems in release-lib, so be more
consistent.
This commit is contained in:
Tuomas Tynkkynen
2018-01-16 18:56:41 +02:00
parent 82cab72dd4
commit b3c50ec1e9
2 changed files with 2 additions and 2 deletions
+1
View File
@@ -58,6 +58,7 @@ rec {
interested in the result of cross building a package. */
crossMaintainers = [ maintainers.viric ];
forAllSystems = genAttrs supportedSystems;
forTheseSystems = systems: f:
genAttrs (filter (x: elem x supportedSystems) systems) f;