fix incorrect call to genAttrs
This commit is contained in:
parent
a210d5d037
commit
c50945c0ef
1 changed files with 2 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ in
|
||||||
in {
|
in {
|
||||||
inherit pkgsFor;
|
inherit pkgsFor;
|
||||||
forAllSystems = f:
|
forAllSystems = f:
|
||||||
std.genAttrs systems (
|
std.attrs.genAttrs systems (
|
||||||
system: f system (pkgsFor system)
|
system: f system (pkgsFor system)
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
@ -40,7 +40,7 @@ in
|
||||||
in {
|
in {
|
||||||
inherit pkgsFor upkgsFor;
|
inherit pkgsFor upkgsFor;
|
||||||
forAllSystems = f:
|
forAllSystems = f:
|
||||||
std.genAttrs systems (
|
std.attrs.genAttrs systems (
|
||||||
system: f system (pkgsFor system) (upkgsFor system)
|
system: f system (pkgsFor system) (upkgsFor system)
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue