Merge pull request #100289 from happysalada/cargo-edit
cargo-edit: fix Darwin build
This commit is contained in:
commit
7ab39519e0
2 changed files with 26 additions and 6 deletions
|
@ -1,6 +1,14 @@
|
|||
{ stdenv, lib, darwin
|
||||
, rustPlatform, fetchFromGitHub
|
||||
, openssl, pkg-config, libiconv }:
|
||||
{ stdenv
|
||||
, lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, xcbuild
|
||||
, openssl
|
||||
, libiconv
|
||||
, Security
|
||||
, zlib
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cargo-edit";
|
||||
|
@ -15,8 +23,18 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
cargoSha256 = "1h1sy54p7zxijydnhzvkxli90d72biv1inni17licb0vb9dihmnf";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];
|
||||
nativeBuildInputs = [ pkg-config ] ++ lib.optionals stdenv.isDarwin [
|
||||
# The cc crate runs xcbuild. This dependency can be removed once
|
||||
# the following PR is merged from staging into master:
|
||||
#
|
||||
# https://github.com/NixOS/nixpkgs/pull/97000
|
||||
xcbuild
|
||||
];
|
||||
|
||||
buildInputs = [ openssl zlib ] ++ lib.optionals stdenv.isDarwin [
|
||||
libiconv
|
||||
Security
|
||||
];
|
||||
|
||||
doCheck = false; # integration tests depend on changing cargo config
|
||||
|
||||
|
|
|
@ -9702,7 +9702,9 @@ in
|
|||
};
|
||||
cargo-deps = callPackage ../tools/package-management/cargo-deps { };
|
||||
cargo-download = callPackage ../tools/package-management/cargo-download { };
|
||||
cargo-edit = callPackage ../tools/package-management/cargo-edit { };
|
||||
cargo-edit = callPackage ../tools/package-management/cargo-edit {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
cargo-kcov = callPackage ../tools/package-management/cargo-kcov { };
|
||||
cargo-graph = callPackage ../tools/package-management/cargo-graph { };
|
||||
cargo-license = callPackage ../tools/package-management/cargo-license { };
|
||||
|
|
Loading…
Reference in a new issue