File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 32
32
pkg-config ,
33
33
rustPlatform ,
34
34
stdenv ,
35
- darwin ,
36
35
writeShellScriptBin ,
37
36
} :
38
37
117
116
# so we don't accidentally `(rustPlatform.buildRustPackage argsForBuildRustPackage) // { ... }` because
118
117
# we forgot parentheses
119
118
finalArgs = argsForBuildRustPackage // {
120
- buildInputs =
121
- ( args . buildInputs or [ ] )
122
- ++ lib . optionals stdenv . hostPlatform . isDarwin [ darwin . apple_sdk . frameworks . Security ] ;
119
+ buildInputs = ( args . buildInputs or [ ] ) ;
123
120
124
121
nativeBuildInputs =
125
122
( args . nativeBuildInputs or [ ] )
Original file line number Diff line number Diff line change 29
29
buildPgrxExtension = final . callPackage ../cargo-pgrx/buildPgrxExtension.nix {
30
30
inherit ( final ) cargo-pgrx ;
31
31
inherit ( final ) lib ;
32
- inherit ( final ) Security ;
33
32
inherit ( final ) pkg-config ;
34
33
inherit ( final ) stdenv ;
35
34
inherit ( final ) writeShellScriptBin ;
You can’t perform that action at this time.
0 commit comments