summary refs log tree commit diff
path: root/pkgs/development/libraries/openldap
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2022-10-20 09:50:42 +0200
committerVladimír Čunát <v@cunat.cz>2022-10-20 09:50:42 +0200
commitb8dfd961548f17d988dba704acb19fe70b3b0d25 (patch)
tree5b6250986e18abb4413079037fcc69ebffb4c9d7 /pkgs/development/libraries/openldap
parent0eb4236f51ce7e2c111e54b42898142be3210648 (diff)
downloadnixpkgs-b8dfd961548f17d988dba704acb19fe70b3b0d25.tar
nixpkgs-b8dfd961548f17d988dba704acb19fe70b3b0d25.tar.gz
nixpkgs-b8dfd961548f17d988dba704acb19fe70b3b0d25.tar.bz2
nixpkgs-b8dfd961548f17d988dba704acb19fe70b3b0d25.tar.lz
nixpkgs-b8dfd961548f17d988dba704acb19fe70b3b0d25.tar.xz
nixpkgs-b8dfd961548f17d988dba704acb19fe70b3b0d25.tar.zst
nixpkgs-b8dfd961548f17d988dba704acb19fe70b3b0d25.zip
openldap: fixup build on *-darwin
https://hydra.nixos.org/build/195641103

This essentially partially reverts dd331ad1677.
I don't expect issues, as libxcrypt it meant to replace parts dropped
from glibc which's never been used on *-darwin anyway.
Diffstat (limited to 'pkgs/development/libraries/openldap')
-rw-r--r--pkgs/development/libraries/openldap/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/openldap/default.nix b/pkgs/development/libraries/openldap/default.nix
index 64b6c8c2344..97a84356f81 100644
--- a/pkgs/development/libraries/openldap/default.nix
+++ b/pkgs/development/libraries/openldap/default.nix
@@ -43,8 +43,8 @@ stdenv.mkDerivation rec {
     libsodium
     libtool
     openssl
-    libxcrypt
   ] ++ lib.optionals (stdenv.isLinux) [
+    libxcrypt # causes linking issues on *-darwin
     systemdMinimal
   ];