nixpkgs-suyu/pkgs/servers/ldap/389/default.nix
William A. Kennington III fe9529ae3f 389-ds-base: Fix build
2015-01-09 11:05:31 -08:00

41 lines
1.1 KiB
Nix

{ stdenv, fetchurl, pkgconfig, perl, pam, nspr, nss, openldap, db, cyrus_sasl
, svrcore, icu, net_snmp, kerberos, pcre
}:
stdenv.mkDerivation rec {
name = "389-ds-base-1.3.3.5";
src = fetchurl {
url = "http://directory.fedoraproject.org/binaries/${name}.tar.bz2";
sha256 = "09w81salyr56njsvq9p96ijrrs0vwsczd43jf6384ylzj1jrxxl5";
};
buildInputs = [
pkgconfig perl pam nspr nss openldap db cyrus_sasl svrcore icu
net_snmp kerberos pcre
];
patches = [ ./no-etc.patch ];
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-openldap=${openldap}"
"--with-db=${db}"
"--with-sasl=${cyrus_sasl}"
"--with-netsnmp=${net_snmp}"
];
preInstall = ''
# The makefile doesn't create this directory for whatever reason
mkdir -p $out/lib/dirsrv
'';
meta = with stdenv.lib; {
homepage = https://directory.fedoraproject.org/;
description = "enterprise-class Open Source LDAP server for Linux";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ wkennington ];
};
}