15e7acd0cf
cyrus-sasl static libraries require linked binaries to pull in openssl via -lcrypto and -lssl. This is problematic because it does not specify -L${openssl}/lib when not explcitly configure to do so. This patch forces cyrus-sasl to add -L${openssl}/lib to the static libraries which propagates the openssl library path to linked binaries.
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, openssl, kerberos, db, gettext, pam, fixDarwinDylibNames }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "cyrus-sasl-2.1.26${optionalString (kerberos == null) "-without-kerberos"}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.cyrusimap.org/cyrus-sasl/${name}.tar.gz";
|
|
sha256 = "1hvvbcsg21nlncbgs0cgn3iwlnb3vannzwsp6rwvnn9ba4v53g4g";
|
|
};
|
|
|
|
buildInputs =
|
|
[ openssl db gettext kerberos ]
|
|
++ lib.optional stdenv.isLinux pam
|
|
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
|
|
|
patches = [ ./missing-size_t.patch ]; # https://bugzilla.redhat.com/show_bug.cgi?id=906519
|
|
patchFlags = "-p0";
|
|
|
|
configureFlags = [
|
|
"--with-openssl=${openssl}"
|
|
];
|
|
|
|
# Set this variable at build-time to make sure $out can be evaluated.
|
|
preConfigure = ''
|
|
configureFlagsArray=( --with-plugindir=$out/lib/sasl2
|
|
--with-configdir=$out/lib/sasl2
|
|
--with-saslauthd=/run/saslauthd
|
|
--enable-login
|
|
)
|
|
'';
|
|
|
|
installFlags = lib.optional stdenv.isDarwin [ "framedir=$(out)/Library/Frameworks/SASL2.framework" ];
|
|
|
|
meta = {
|
|
homepage = "http://cyrusimap.web.cmu.edu/";
|
|
description = "library for adding authentication support to connection-based protocols";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ simons ];
|
|
};
|
|
}
|