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