fix incorrect call to genAttrs

This commit is contained in:
Emile Clark-Boman 2025-12-14 09:29:16 +10:00
parent a210d5d037
commit c50945c0ef

View file

@ -28,7 +28,7 @@ in
in {
inherit pkgsFor;
forAllSystems = f:
std.genAttrs systems (
std.attrs.genAttrs systems (
system: f system (pkgsFor system)
);
};
@ -40,7 +40,7 @@ in
in {
inherit pkgsFor upkgsFor;
forAllSystems = f:
std.genAttrs systems (
std.attrs.genAttrs systems (
system: f system (pkgsFor system) (upkgsFor system)
);
};