nixpkgs/pkgs/development/libraries/cyrus-sasl/default.nix

56 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, openssl, kerberos, db, gettext, pam, fixDarwinDylibNames, autoreconfHook }:
2014-12-30 09:04:16 +00:00
with stdenv.lib;
2012-07-07 11:00:53 +00:00
stdenv.mkDerivation rec {
2014-12-30 09:04:16 +00:00
name = "cyrus-sasl-2.1.26${optionalString (kerberos == null) "-without-kerberos"}";
src = fetchurl {
2013-03-12 09:05:49 +00:00
url = "ftp://ftp.cyrusimap.org/cyrus-sasl/${name}.tar.gz";
sha256 = "1hvvbcsg21nlncbgs0cgn3iwlnb3vannzwsp6rwvnn9ba4v53g4g";
};
2012-07-07 11:00:53 +00:00
outputs = [ "bin" "dev" "out" "man" "docdev" ];
2014-09-24 16:28:26 +00:00
buildInputs =
2014-12-30 09:04:16 +00:00
[ openssl db gettext kerberos ]
++ lib.optional stdenv.isFreeBSD autoreconfHook
2014-09-24 16:28:26 +00:00
++ lib.optional stdenv.isLinux pam
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
2012-07-07 11:00:53 +00:00
patches = [
./missing-size_t.patch # https://bugzilla.redhat.com/show_bug.cgi?id=906519
] ++ lib.optional stdenv.isFreeBSD (
fetchurl {
url = "http://www.linuxfromscratch.org/patches/blfs/svn/cyrus-sasl-2.1.26-fixes-3.patch";
sha256 = "1vh4pc2rxxm6yvykx0b7kg09jbcwcxwv5rs6yq2ag3y8p6a9x86w";
}
);
configureFlags = [
"--with-openssl=${openssl.dev}"
];
2012-07-07 11:00:53 +00:00
# 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
)
2012-07-07 11:00:53 +00:00
'';
2014-09-24 16:28:26 +00:00
installFlags = lib.optional stdenv.isDarwin [ "framedir=$(out)/Library/Frameworks/SASL2.framework" ];
postInstall = ''
for f in $out/lib/*.la $out/lib/sasl2/*.la; do
substituteInPlace $f --replace "${openssl.dev}/lib" "${openssl.out}/lib"
done
'';
2012-07-07 11:00:53 +00:00
meta = {
homepage = "http://cyrusimap.web.cmu.edu/";
description = "Library for adding authentication support to connection-based protocols";
2014-12-30 09:04:16 +00:00
platforms = platforms.unix;
2012-07-07 11:00:53 +00:00
};
}