nixpkgs/pkgs/servers/ldap/389/default.nix

64 lines
1.6 KiB
Nix
Raw Normal View History

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