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

cargo-outdated: add missing `CoreServices` buildinput

Vlad M 6e9240e2 fb3e9316

Changed files
+3 -1
pkgs
development
tools
rust
cargo-outdated
top-level
+2
pkgs/development/tools/rust/cargo-outdated/default.nix
···
, stdenv
, curl
, CoreFoundation
+
, CoreServices
, Security
, SystemConfiguration
}:
···
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
curl
CoreFoundation
+
CoreServices
Security
SystemConfiguration
];
+1 -1
pkgs/top-level/all-packages.nix
···
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;