rustup: fix darwin build
This commit is contained in:
parent
97335842d1
commit
ceb8edb369
1 changed files with 3 additions and 1 deletions
|
@ -10,6 +10,8 @@
|
|||
, zlib
|
||||
, Security
|
||||
, CoreServices
|
||||
, libiconv
|
||||
, xz
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -36,7 +38,7 @@ rustPlatform.buildRustPackage rec {
|
|||
buildInputs = [
|
||||
curl
|
||||
zlib
|
||||
] ++ lib.optionals stdenv.isDarwin [ CoreServices Security ];
|
||||
] ++ lib.optionals stdenv.isDarwin [ CoreServices Security libiconv xz ];
|
||||
|
||||
cargoBuildFlags = [ "--features no-self-update" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue