ofborg/nix/overlay.nix

15 lines
391 B
Nix
Raw Normal View History

2020-04-25 12:32:42 +00:00
(self: super:
{
defaultCrateOverrides = super.defaultCrateOverrides // {
2020-04-25 12:32:42 +00:00
ofborg = attrs: {
buildInputs = with self.darwin.apple_sdk.frameworks;
super.lib.optional super.stdenv.isDarwin Security;
};
ofborg-simple-build = attrs: {
buildInputs = with self.darwin.apple_sdk.frameworks;
super.lib.optional super.stdenv.isDarwin Security;
};
};
})