mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
Merge pull request #265643 from davidkna/cargo-outdated-coreservices
cargo-outdated: add missing `CoreServices` buildinput
This commit is contained in:
commit
6e9240e25b
@ -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
|
||||
];
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user