Unverified Commit 147bb4c2 authored by David Knaack's avatar David Knaack Committed by GitHub
Browse files

cargo-outdated: add missing `CoreServices` buildinput

parent 0020a3f6
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
@@ -17073,7 +17073,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;