nixpkgs/pkgs/by-name/_3/_389-ds-base/package.nix
2024-10-30 19:29:57 +08:00

157 lines
3.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoconf,
automake,
cargo,
libtool,
pkg-config,
cracklib,
lmdb,
json_c,
linux-pam,
libevent,
libxcrypt,
nspr,
nss,
openldap,
withOpenldap ? true,
db,
withBdb ? true,
cyrus_sasl,
icu,
net-snmp,
withNetSnmp ? true,
krb5,
pcre2,
python3,
rustPlatform,
rustc,
openssl,
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
systemd,
zlib,
rsync,
withCockpit ? true,
withAsan ? false,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "389-ds-base";
version = "3.1.1";
src = fetchFromGitHub {
owner = "389ds";
repo = "389-ds-base";
rev = "389-ds-base-${finalAttrs.version}";
hash = "sha256-ouWJB5DbAtcLKyFngmxBRObXC6RFA+GXfvOEFk88Zu0=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit (finalAttrs) src;
sourceRoot = "${finalAttrs.src.name}/src";
name = "389-ds-base-${finalAttrs.version}";
hash = "sha256-nBYuVijF50K3JlEo2py0ephDwlnAhbxeNA4vvC9rEV0=";
};
nativeBuildInputs = [
autoconf
automake
libtool
pkg-config
python3
cargo
rustc
] ++ lib.optional withCockpit rsync;
buildInputs =
[
cracklib
lmdb
json_c
linux-pam
libevent
libxcrypt
nspr
nss
cyrus_sasl
icu
krb5
pcre2
openssl
zlib
]
++ lib.optional withSystemd systemd
++ lib.optional withOpenldap openldap
++ lib.optional withBdb db
++ lib.optional withNetSnmp net-snmp;
postPatch = ''
patchShebangs ./buildnum.py ./ldap/servers/slapd/mkDBErrStrs.py
'';
preConfigure = ''
./autogen.sh --prefix="$out"
'';
preBuild = ''
mkdir -p ./vendor
tar -xzf ${finalAttrs.cargoDeps} -C ./vendor --strip-components=1
'';
configureFlags =
[
"--enable-rust-offline"
"--enable-autobind"
]
++ lib.optionals withSystemd [
"--with-systemd"
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
]
++ lib.optionals withOpenldap [
"--with-openldap"
]
++ lib.optionals withBdb [
"--with-db-inc=${lib.getDev db}/include"
"--with-db-lib=${lib.getLib db}/lib"
]
++ lib.optionals withNetSnmp [
"--with-netsnmp-inc=${lib.getDev net-snmp}/include"
"--with-netsnmp-lib=${lib.getLib net-snmp}/lib"
]
++ lib.optionals (!withCockpit) [
"--disable-cockpit"
]
++ lib.optionals withAsan [
"--enable-asan"
"--enable-debug"
];
enableParallelBuilding = true;
# Disable parallel builds as those lack some dependencies:
# ld: cannot find -lslapd: No such file or directory
# https://hydra.nixos.org/log/h38bj77gav0r6jbi4bgzy1lfjq22k2wy-389-ds-base-2.3.1.drv
enableParallelInstalling = false;
doCheck = true;
installFlags = [
"sysconfdir=${placeholder "out"}/etc"
"localstatedir=${placeholder "TMPDIR"}"
];
passthru.version = finalAttrs.version;
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://www.port389.org/";
description = "Enterprise-class Open Source LDAP server for Linux";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.ners ];
};
})