about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVlad M <dywedir@gra.red>2023-11-05 22:28:46 +0200
committerGitHub <noreply@github.com>2023-11-05 22:28:46 +0200
commit6e9240e25b81f0f2e8587030c303757150172893 (patch)
treea5321ba977534954a31fe3f64a0f7e158bd80369 /pkgs
parentfb3e93169d013e15eeb7cd9c7cc3d01e99af6b60 (diff)
parent147bb4c2b9c8a0a8cd9558df9061b6bb099030d4 (diff)
Merge pull request #265643 from davidkna/cargo-outdated-coreservices
cargo-outdated: add missing `CoreServices` buildinput
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/rust/cargo-outdated/default.nix2
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/tools/rust/cargo-outdated/default.nix b/pkgs/development/tools/rust/cargo-outdated/default.nix
index d1902e88fb902..2f3c6ae76c79f 100644
--- a/pkgs/development/tools/rust/cargo-outdated/default.nix
+++ b/pkgs/development/tools/rust/cargo-outdated/default.nix
@@ -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
   ];
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f101cb21ca18f..1849c4f85cc66 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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;