ofborg/nix/overlay.nix

22 lines
580 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;
};
openssl-sys = attrs: {
buildInputs = [ self.openssl_1_0_2 ];
nativeBuildInputs = [ self.pkgconfig ];
};
openssl = attrs: {
DEP_OPENSSL_VERSION = "102";
};
};
})