2019-05-21 11:09:31 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch, autoreconfHook, pkgconfig, doxygen, perl, pam, nspr, nss, openldap
|
2019-12-21 23:44:50 +01:00
|
|
|
, db, cyrus_sasl, svrcore, icu, net-snmp, kerberos, pcre, perlPackages, libevent, openssl, python
|
2014-12-30 18:30:15 +01:00
|
|
|
}:
|
2019-05-21 11:09:31 +02:00
|
|
|
|
2014-12-30 18:30:15 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-21 11:09:31 +02:00
|
|
|
pname = "389-ds-base";
|
|
|
|
version = "1.3.9.1";
|
2014-12-30 18:30:15 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-21 11:09:31 +02:00
|
|
|
url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.bz2";
|
|
|
|
sha256 = "141iv1phgk1lw74sfjj3v7wy6qs0q56lvclwv2p0hqn1wg8ic4q6";
|
2014-12-30 18:30:15 +01:00
|
|
|
};
|
|
|
|
|
2019-05-21 11:09:31 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig doxygen ];
|
2014-12-30 18:30:15 +01:00
|
|
|
buildInputs = [
|
2017-09-14 21:24:37 +02:00
|
|
|
perl pam nspr nss openldap db cyrus_sasl svrcore icu
|
2019-12-21 23:44:50 +01:00
|
|
|
net-snmp kerberos pcre libevent openssl python
|
2015-01-10 00:01:01 +01:00
|
|
|
] ++ (with perlPackages; [ MozillaLdap NetAddrIP DBFile ]);
|
|
|
|
|
2019-05-21 11:09:31 +02:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "389-ds-nss.patch";
|
|
|
|
url = "https://aur.archlinux.org/cgit/aur.git/plain/nss.patch?h=389-ds-base&id=b80ed52cc65ff9b1d72f8ebc54dbd462b12f6be9";
|
|
|
|
sha256 = "07z7jl9z4gzhk3k6qyfn558xl76js8041llyr5n99h20ckkbwagk";
|
|
|
|
})
|
2016-11-10 03:49:22 +01:00
|
|
|
];
|
2019-05-21 11:09:31 +02:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.am \
|
|
|
|
--replace 's,@perlpath\@,$(perldir),g' 's,@perlpath\@,$(perldir) $(PERLPATH),g'
|
|
|
|
'';
|
2015-01-10 00:01:01 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
# Create perl paths for library imports in perl scripts
|
|
|
|
PERLPATH=""
|
|
|
|
for P in $(echo $PERL5LIB | sed 's/:/ /g'); do
|
|
|
|
PERLPATH="$PERLPATH $(echo $P/*/*)"
|
|
|
|
done
|
|
|
|
export PERLPATH
|
|
|
|
'';
|
2015-01-09 20:05:12 +01:00
|
|
|
|
2014-12-30 18:30:15 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
2015-01-09 20:05:12 +01:00
|
|
|
"--localstatedir=/var"
|
2016-04-17 17:36:00 +02:00
|
|
|
"--with-openldap"
|
2018-05-22 15:47:28 +02:00
|
|
|
"--with-db"
|
|
|
|
"--with-db-inc=${db.dev}/include"
|
|
|
|
"--with-db-lib=${db.out}/lib"
|
2016-04-16 18:48:19 +02:00
|
|
|
"--with-sasl=${cyrus_sasl.dev}"
|
2019-12-21 23:44:50 +01:00
|
|
|
"--with-netsnmp=yes"
|
|
|
|
"--with-netsnmp-inc=${stdenv.lib.getDev net-snmp}/include"
|
|
|
|
"--with-netsnmp-lib=${stdenv.lib.getLib net-snmp}/lib"
|
2014-12-30 18:30:15 +01:00
|
|
|
];
|
2017-02-05 22:40:28 +01:00
|
|
|
|
2019-05-21 11:09:31 +02:00
|
|
|
enableParallelBuilding = true;
|
2015-01-09 20:05:12 +01:00
|
|
|
|
2015-04-17 23:09:41 +02:00
|
|
|
installFlags = [
|
2019-05-21 11:09:31 +02:00
|
|
|
"sysconfdir=${placeholder "out"}/etc"
|
|
|
|
"localstatedir=${placeholder "TMPDIR"}"
|
2015-04-17 23:09:41 +02:00
|
|
|
];
|
|
|
|
|
2015-01-10 00:01:01 +01:00
|
|
|
passthru.version = version;
|
|
|
|
|
2014-12-30 18:30:15 +01:00
|
|
|
meta = with stdenv.lib; {
|
2019-05-21 11:09:31 +02:00
|
|
|
homepage = "https://www.port389.org/";
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Enterprise-class Open Source LDAP server for Linux";
|
2019-05-21 11:09:31 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2014-12-30 18:30:15 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|