Unverified Commit 6e9240e2 authored by Vlad M's avatar Vlad M Committed by GitHub
Browse files

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

cargo-outdated: add missing `CoreServices` buildinput
parents fb3e9316 147bb4c2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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
  ];
+1 −1
Original line number Diff line number Diff line
@@ -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;