3
0
Fork 0
forked from mirrors/nixpkgs

cloudflare-wrangler: adding dependencies for darwin

This commit is contained in:
Marek Mahut 2020-02-12 09:17:15 +01:00
parent 809bc8cafb
commit 6274ce11a1

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, darwin
}:
rustPlatform.buildRustPackage rec {
@ -18,7 +18,12 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [
curl
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.CoreServices
darwin.apple_sdk.frameworks.CoreFoundation
];
# tries to use "/homeless-shelter" and fails
doCheck = false;