We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae0afd8 commit e776a07Copy full SHA for e776a07
nix/cargo-pgrx/buildPgrxExtension.nix
@@ -32,7 +32,6 @@
32
pkg-config,
33
rustPlatform,
34
stdenv,
35
- darwin,
36
writeShellScriptBin,
37
defaultBindgenHook,
38
}:
@@ -124,9 +123,7 @@ let
124
123
# so we don't accidentally `(rustPlatform.buildRustPackage argsForBuildRustPackage) // { ... }` because
125
# we forgot parentheses
126
finalArgs = argsForBuildRustPackage // {
127
- buildInputs =
128
- (args.buildInputs or [ ])
129
- ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Security ];
+ buildInputs = (args.buildInputs or [ ]);
130
131
nativeBuildInputs =
132
(args.nativeBuildInputs or [ ])
0 commit comments