summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorRandy Eckenrode <randy@largeandhighquality.com>2022-04-25 13:07:21 -0400
committerRandy Eckenrode <randy@largeandhighquality.com>2022-04-25 14:33:46 -0400
commit0e5763e31bd697fcd907dcef8d5ea916937f8286 (patch)
tree92fb9dde8b3b98716832fe77ecf5a26b5dbe0d73 /pkgs/applications/version-management
parent073cad8fd6fe21d6955d9250c6918a2cbdfa2321 (diff)
downloadnixpkgs-0e5763e31bd697fcd907dcef8d5ea916937f8286.tar
nixpkgs-0e5763e31bd697fcd907dcef8d5ea916937f8286.tar.gz
nixpkgs-0e5763e31bd697fcd907dcef8d5ea916937f8286.tar.bz2
nixpkgs-0e5763e31bd697fcd907dcef8d5ea916937f8286.tar.lz
nixpkgs-0e5763e31bd697fcd907dcef8d5ea916937f8286.tar.xz
nixpkgs-0e5763e31bd697fcd907dcef8d5ea916937f8286.tar.zst
nixpkgs-0e5763e31bd697fcd907dcef8d5ea916937f8286.zip
git: fix failing build on Darwin
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/git-and-tools/git/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix
index 7f63f4bc8ce..b3e6ea9e0ae 100644
--- a/pkgs/applications/version-management/git-and-tools/git/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git/default.nix
@@ -13,7 +13,7 @@
 , pythonSupport ? true
 , withpcre2 ? true
 , sendEmailSupport ? false
-, darwin
+, Security, CoreServices
 , nixosTests
 , withLibsecret ? false
 , pkg-config, glib, libsecret
@@ -79,7 +79,7 @@ stdenv.mkDerivation {
     ++ lib.optionals perlSupport [ perlPackages.perl ]
     ++ lib.optionals guiSupport [tcl tk]
     ++ lib.optionals withpcre2 [ pcre2 ]
-    ++ lib.optionals stdenv.isDarwin [ darwin.Security ]
+    ++ lib.optionals stdenv.isDarwin [ Security CoreServices ]
     ++ lib.optionals withLibsecret [ pkg-config glib libsecret ];
 
   # required to support pthread_cancel()