2016-11-10 05:49:22 +03:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, perl, pam, nspr, nss, openldap
|
|
|
|
, db, cyrus_sasl, svrcore, icu, net_snmp, kerberos, pcre, perlPackages
|
2014-12-30 20:30:15 +03:00
|
|
|
}:
|
2015-01-10 02:01:01 +03:00
|
|
|
let
|
2017-08-20 23:22:59 +03:00
|
|
|
version = "1.3.5.19";
|
2015-01-10 02:01:01 +03:00
|
|
|
in
|
2014-12-30 20:30:15 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-10 02:01:01 +03:00
|
|
|
name = "389-ds-base-${version}";
|
2014-12-30 20:30:15 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://directory.fedoraproject.org/binaries/${name}.tar.bz2";
|
2017-08-20 23:22:59 +03:00
|
|
|
sha256 = "1r1n44xfvy51r4r1180dfmjziyj3pqxwmnv6rjvvvjjm87fslmdd";
|
2014-12-30 20:30:15 +03:00
|
|
|
};
|
|
|
|
|
2017-09-14 22:24:37 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-12-30 20:30:15 +03:00
|
|
|
buildInputs = [
|
2017-09-14 22:24:37 +03:00
|
|
|
perl pam nspr nss openldap db cyrus_sasl svrcore icu
|
2015-06-01 22:33:51 +03:00
|
|
|
net_snmp kerberos pcre
|
2015-01-10 02:01:01 +03:00
|
|
|
] ++ (with perlPackages; [ MozillaLdap NetAddrIP DBFile ]);
|
|
|
|
|
|
|
|
# TODO: Fix bin/ds-logpipe.py, bin/logconv, bin/cl-dump
|
2014-12-30 20:30:15 +03:00
|
|
|
|
2016-11-10 05:49:22 +03:00
|
|
|
patches = [ ./perl-path.patch
|
|
|
|
];
|
2015-01-10 02:01:01 +03: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 22:05:12 +03:00
|
|
|
|
2014-12-30 20:30:15 +03:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
2015-01-09 22:05:12 +03:00
|
|
|
"--localstatedir=/var"
|
2016-04-17 18:36:00 +03:00
|
|
|
"--with-openldap"
|
2014-12-30 20:30:15 +03:00
|
|
|
"--with-db=${db}"
|
2016-04-16 19:48:19 +03:00
|
|
|
"--with-sasl=${cyrus_sasl.dev}"
|
2014-12-30 20:30:15 +03:00
|
|
|
"--with-netsnmp=${net_snmp}"
|
|
|
|
];
|
2017-02-06 00:40:28 +03:00
|
|
|
|
2015-01-09 22:05:12 +03:00
|
|
|
preInstall = ''
|
|
|
|
# The makefile doesn't create this directory for whatever reason
|
|
|
|
mkdir -p $out/lib/dirsrv
|
|
|
|
'';
|
|
|
|
|
2015-04-18 00:09:41 +03:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
|
|
|
|
2015-01-10 02:01:01 +03:00
|
|
|
passthru.version = version;
|
|
|
|
|
2014-12-30 20:30:15 +03:00
|
|
|
meta = with stdenv.lib; {
|
2017-10-27 00:42:06 +03:00
|
|
|
homepage = http://www.port389.org/;
|
2016-06-20 13:53:46 +03:00
|
|
|
description = "Enterprise-class Open Source LDAP server for Linux";
|
2014-12-30 20:30:15 +03:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
|
|
|
}
|