2020-04-25 12:32:42 +00:00
|
|
|
(self: super:
|
|
|
|
{
|
2020-02-21 15:40:22 +00:00
|
|
|
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;
|
|
|
|
};
|
2020-02-21 15:40:22 +00:00
|
|
|
openssl-sys = attrs: {
|
|
|
|
buildInputs = [ self.openssl_1_0_2 ];
|
|
|
|
nativeBuildInputs = [ self.pkgconfig ];
|
|
|
|
};
|
|
|
|
openssl = attrs: {
|
|
|
|
DEP_OPENSSL_VERSION = "102";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
})
|
|
|
|
|