feat(overlay): add darwin support for himalaya
This commit is contained in:
parent
e2c5514c76
commit
5796094eb5
1 changed files with 13 additions and 0 deletions
|
@ -30,6 +30,19 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
himalaya = prev.himalaya.overrideAttrs (oldAttrs: rec {
|
||||||
|
buildInputs =
|
||||||
|
(prev.buildInputs or [ ]) ++
|
||||||
|
final.lib.optionals final.stdenv.isDarwin ([
|
||||||
|
(with final.darwin.apple_sdk.frameworks; [
|
||||||
|
Security
|
||||||
|
])
|
||||||
|
(with final; [
|
||||||
|
iconv
|
||||||
|
])
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
river = prev.river.overrideAttrs (oldAttrs: rec {
|
river = prev.river.overrideAttrs (oldAttrs: rec {
|
||||||
xwaylandSupport = true;
|
xwaylandSupport = true;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue