Merge pull request #265643 from davidkna/cargo-outdated-coreservices

cargo-outdated: add missing `CoreServices` buildinput
This commit is contained in:
Vlad M 2023-11-05 22:28:46 +02:00 committed by GitHub
commit 6e9240e25b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@
, stdenv
, curl
, CoreFoundation
, CoreServices
, Security
, SystemConfiguration
}:
@ -26,6 +27,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
curl
CoreFoundation
CoreServices
Security
SystemConfiguration
];

View File

@ -17071,7 +17071,7 @@ with pkgs;
cargo-lock = callPackage ../development/tools/rust/cargo-lock { };
cargo-machete = callPackage ../development/tools/rust/cargo-machete { };
cargo-outdated = callPackage ../development/tools/rust/cargo-outdated {
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security SystemConfiguration;
inherit (darwin.apple_sdk.frameworks) CoreFoundation CoreServices Security SystemConfiguration;
};
cargo-pgx_0_6_1 = callPackage ../development/tools/rust/cargo-pgx/0_6_1.nix {
inherit (darwin.apple_sdk.frameworks) Security;