9aecc91a09
With rust-amqp gone this isn't referenced anymore.
15 lines
391 B
Nix
15 lines
391 B
Nix
(self: super:
|
|
{
|
|
defaultCrateOverrides = super.defaultCrateOverrides // {
|
|
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;
|
|
};
|
|
};
|
|
})
|
|
|