about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-12-17 20:40:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2023-12-17 20:40:00 -0500
commitfa80274f38d473ba34aeefb696e4da34df765f79 (patch)
treeebe62b4633f74cae92ddd261d55968e16cc93cdb /pkgs/development/tools
parentca16221251951e9c6261a1a2bb4f9389038d3632 (diff)
trunk: fix build on darwin
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/trunk/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/tools/trunk/default.nix b/pkgs/development/tools/trunk/default.nix
index c19936b2bf64c..b5a1c90926fb7 100644
--- a/pkgs/development/tools/trunk/default.nix
+++ b/pkgs/development/tools/trunk/default.nix
@@ -4,11 +4,10 @@ rustPlatform,
 fetchFromGitHub,
 pkg-config,
 openssl,
-libiconv,
 jq,
 moreutils,
 CoreServices,
-Security
+SystemConfiguration
 }:
 
 rustPlatform.buildRustPackage rec {
@@ -24,7 +23,7 @@ rustPlatform.buildRustPackage rec {
 
   nativeBuildInputs = [ pkg-config ];
   buildInputs = if stdenv.isDarwin
-    then [ libiconv CoreServices Security ]
+    then [ CoreServices SystemConfiguration ]
     else [ openssl ];
   # requires network
   checkFlags = [ "--skip=tools::tests::download_and_install_binaries" ];