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

161 lines
3.1 KiB
Nix
Raw Normal View History

2021-06-12 03:40:02 +00:00
{ stdenv
, autoreconfHook
, fetchFromGitHub
, lib
, bzip2
, cmocka
, cracklib
, cyrus_sasl
, db
, doxygen
, icu
, libevent
, libkrb5
, lm_sensors
, net-snmp
, nspr
, nss
, openldap
, openssl
, pcre
, perl
, perlPackages
, pkg-config
, python3
, svrcore
, zlib
, enablePamPassthru ? true
, pam
, enableCockpit ? true
, rsync
, enableDna ? true
, enableLdapi ? true
, enableAutobind ? false
, enableAutoDnSuffix ? false
, enableBitwise ? true
, enableAcctPolicy ? true
, enablePosixWinsync ? true
2014-12-30 17:30:15 +00:00
}:
2014-12-30 17:30:15 +00:00
stdenv.mkDerivation rec {
pname = "389-ds-base";
2021-07-20 08:31:51 +00:00
version = "2.0.7";
2014-12-30 17:30:15 +00:00
2021-06-12 03:40:02 +00:00
src = fetchFromGitHub {
owner = "389ds";
repo = pname;
rev = "${pname}-${version}";
2021-07-20 08:31:51 +00:00
sha256 = "sha256-aM1qo+yHrCFespPWHv2f25ooqQVCIZGaZS43dY6kiC4=";
2014-12-30 17:30:15 +00:00
};
nativeBuildInputs = [ autoreconfHook pkg-config doxygen ];
2021-06-12 03:40:02 +00:00
2014-12-30 17:30:15 +00:00
buildInputs = [
2021-06-12 03:40:02 +00:00
bzip2
cracklib
cyrus_sasl
db
icu
libevent
libkrb5
lm_sensors
net-snmp
nspr
nss
openldap
openssl
pcre
perl
python3
svrcore
zlib
# tests
cmocka
libevent
# lib389
(python3.withPackages (ps: with ps; [
setuptools
ldap
six
pyasn1
pyasn1-modules
python-dateutil
2021-06-12 03:40:02 +00:00
argcomplete
libselinux
]))
# logconv.pl
perlPackages.DBFile
perlPackages.ArchiveTar
]
++ lib.optional enableCockpit rsync
++ lib.optional enablePamPassthru pam;
postPatch = ''
substituteInPlace Makefile.am \
--replace 's,@perlpath\@,$(perldir),g' 's,@perlpath\@,$(perldir) $(PERLPATH),g'
2021-06-12 03:40:02 +00:00
patchShebangs ./buildnum.py ./ldap/servers/slapd/mkDBErrStrs.py
'';
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
2021-06-12 03:40:02 +00:00
configureFlags =
let
mkEnable = cond: name: if cond then "--enable-${name}" else "--disable-${name}";
in
[
"--enable-cmocka"
"--localstatedir=/var"
"--sysconfdir=/etc"
"--with-db-inc=${db.dev}/include"
"--with-db-lib=${db.out}/lib"
"--with-db=yes"
"--with-netsnmp-inc=${lib.getDev net-snmp}/include"
"--with-netsnmp-lib=${lib.getLib net-snmp}/lib"
"--with-netsnmp=yes"
"--with-openldap"
"${mkEnable enableCockpit "cockpit"}"
"${mkEnable enablePamPassthru "pam-passthru"}"
"${mkEnable enableDna "dna"}"
"${mkEnable enableLdapi "ldapi"}"
"${mkEnable enableAutobind "autobind"}"
"${mkEnable enableAutoDnSuffix "auto-dn-suffix"}"
"${mkEnable enableBitwise "bitwise"}"
"${mkEnable enableAcctPolicy "acctpolicy"}"
"${mkEnable enablePosixWinsync "posix-winsync"}"
];
2017-02-05 21:40:28 +00:00
enableParallelBuilding = true;
2015-01-09 19:05:12 +00:00
2021-06-12 03:40:02 +00:00
doCheck = true;
2015-04-17 21:09:41 +00:00
installFlags = [
"sysconfdir=${placeholder "out"}/etc"
"localstatedir=${placeholder "TMPDIR"}"
2015-04-17 21:09:41 +00:00
];
2015-01-09 23:01:01 +00:00
passthru.version = version;
meta = with lib; {
homepage = "https://www.port389.org/";
description = "Enterprise-class Open Source LDAP server for Linux";
license = licenses.gpl3Plus;
2014-12-30 17:30:15 +00:00
platforms = platforms.linux;
};
}