aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/openldap/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/libraries/openldap/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/libraries/openldap/default.nix24
1 files changed, 14 insertions, 10 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/libraries/openldap/default.nix b/infra/libkookie/nixpkgs/pkgs/development/libraries/openldap/default.nix
index a71b2a61910e..44a0e017a2ab 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/libraries/openldap/default.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/libraries/openldap/default.nix
@@ -1,4 +1,7 @@
-{ lib, stdenv, fetchurl, openssl, cyrus_sasl, db, groff, libtool }:
+{ lib, stdenv, fetchurl, openssl, db, groff, libtool
+, withCyrusSasl ? true
+, cyrus_sasl
+}:
stdenv.mkDerivation rec {
pname = "openldap";
@@ -37,8 +40,7 @@ stdenv.mkDerivation rec {
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
"--with-yielding_select=yes"
"ac_cv_func_memcmp_working=yes"
- ] ++ lib.optional (openssl == null) "--without-tls"
- ++ lib.optional (cyrus_sasl == null) "--without-cyrus-sasl"
+ ] ++ lib.optional (!withCyrusSasl) "--without-cyrus-sasl"
++ lib.optional stdenv.isFreeBSD "--with-pic";
postBuild = ''
@@ -54,19 +56,21 @@ stdenv.mkDerivation rec {
"moduledir=$(out)/lib/modules"
];
- # 1. Fixup broken libtool
- # 2. Libraries left in the build location confuse `patchelf --shrink-rpath`
+ # 1. Libraries left in the build location confuse `patchelf --shrink-rpath`
# Delete these to let patchelf discover the right path instead.
# FIXME: that one can be removed when https://github.com/NixOS/patchelf/pull/98
# is in Nixpkgs patchelf.
+ # 2. Fixup broken libtool for openssl and cyrus_sasl (if it is not disabled)
preFixup = ''
- sed -e 's,-lsasl2,-L${cyrus_sasl.out}/lib -lsasl2,' \
- -e 's,-lssl,-L${openssl.out}/lib -lssl,' \
- -i $out/lib/libldap.la -i $out/lib/libldap_r.la
-
- rm -rf $out/var
+ rm -r $out/var
rm -r libraries/*/.libs
rm -r contrib/slapd-modules/passwd/*/.libs
+ for f in $out/lib/libldap.la $out/lib/libldap_r.la; do
+ substituteInPlace "$f" --replace '-lssl' '-L${openssl.out}/lib -lssl'
+ '' + lib.optionalString withCyrusSasl ''
+ substituteInPlace "$f" --replace '-lsasl2' '-L${cyrus_sasl.out}/lib -lsasl2'
+ '' + ''
+ done
'';
postInstall = ''