nix: fix building rust on macOS (Security apple_sdk framework)
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
fe637f481d
commit
ddce9496f2
1 changed files with 5 additions and 1 deletions
|
@ -66,7 +66,11 @@ commonAttrs = {
|
|||
# right thing here.
|
||||
pkgsBuildHost.rustPlatform.bindgenHook
|
||||
]
|
||||
++ lib.optionals stdenv.isDarwin [ libiconv ];
|
||||
# https://github.com/NixOS/nixpkgs/issues/206242
|
||||
++ lib.optionals stdenv.isDarwin [ libiconv ]
|
||||
# https://stackoverflow.com/questions/69869574/properly-adding-darwin-apple-sdk-to-a-nix-shell
|
||||
# https://discourse.nixos.org/t/compile-a-rust-binary-on-macos-dbcrossbar/8612
|
||||
++ lib.optionals stdenv.isDarwin [ pkgsBuildHost.darwin.apple_sdk.frameworks.Security ];
|
||||
};
|
||||
in
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue