nixpkgs/pkgs/servers/samba/4.x.nix

153 lines
3.8 KiB
Nix
Raw Normal View History

2020-03-24 06:59:16 +00:00
{ stdenv
, fetchurl
, python
, pkgconfig
, perl
, libxslt
, docbook_xsl
, rpcgen
, fixDarwinDylibNames
2020-03-24 06:59:16 +00:00
, docbook_xml_dtd_42
, readline
, popt
, iniparser
, libbsd
, libarchive
, libiconv
, gettext
, krb5Full
, zlib
, libaio
, liburing
, fam
, gnutls
, libunwind
, systemd
, jansson
2020-03-25 08:28:36 +00:00
, enableLDAP ? false, openldap
, enablePrinting ? false, cups
, enableMDNS ? false, avahi
, enableDomainController ? false, gpgme, lmdb
, enableRegedit ? true, ncurses
, enableCephFS ? false, libceph
, enableGlusterFS ? false, glusterfs, libuuid
, enableAcl ? (!stdenv.isDarwin), acl
, enablePam ? (!stdenv.isDarwin), pam
2015-01-03 05:21:34 +00:00
}:
2020-03-24 06:59:16 +00:00
with stdenv.lib;
2015-04-04 01:33:36 +00:00
2015-01-03 05:21:34 +00:00
stdenv.mkDerivation rec {
pname = "samba";
version = "4.12.0";
2015-01-03 05:21:34 +00:00
src = fetchurl {
url = "mirror://samba/pub/samba/stable/${pname}-${version}.tar.gz";
sha256 = "1zk5jqnkifkfi6ssn02bh2ih7vyw2nsr0angsd6kyg3xaq5bgh3f";
2015-01-03 05:21:34 +00:00
};
2016-09-19 13:37:59 +00:00
outputs = [ "out" "dev" "man" ];
patches = [
./4.x-no-persistent-install.patch
./patch-source3__libads__kerberos_keytab.c.patch
./4.x-no-persistent-install-dynconfig.patch
./4.x-fix-makeflags-parsing.patch
];
2020-03-24 06:59:16 +00:00
nativeBuildInputs = [
pkgconfig
perl
perl.pkgs.ParseYapp
libxslt
docbook_xsl
docbook_xml_dtd_42
] ++ optionals stdenv.isDarwin [
rpcgen
fixDarwinDylibNames
];
2019-04-17 20:50:08 +00:00
buildInputs = [
2020-03-24 06:59:16 +00:00
python
readline
popt
iniparser
jansson
libbsd
libarchive
zlib
fam
libiconv
gettext
libunwind
krb5Full
gnutls
] ++ optionals stdenv.isLinux [ libaio liburing systemd ]
++ optional enableLDAP openldap
++ optional (enablePrinting && stdenv.isLinux) cups
++ optional enableMDNS avahi
2019-11-13 00:25:13 +00:00
++ optionals enableDomainController [ gpgme lmdb ]
++ optional enableRegedit ncurses
++ optional (enableCephFS && stdenv.isLinux) libceph
++ optionals (enableGlusterFS && stdenv.isLinux) [ glusterfs libuuid ]
++ optional enableAcl acl
++ optional enablePam pam;
2015-01-03 05:21:34 +00:00
2015-03-13 00:34:22 +00:00
postPatch = ''
# Removes absolute paths in scripts
sed -i 's,/sbin/,,g' ctdb/config/functions
2015-04-03 00:43:47 +00:00
# Fix the XML Catalog Paths
sed -i "s,\(XML_CATALOG_FILES=\"\),\1$XML_CATALOG_FILES ,g" buildtools/wafsamba/wafsamba.py
patchShebangs ./buildtools/bin
2015-03-13 00:34:22 +00:00
'';
configureFlags = [
"--with-static-modules=NONE"
"--with-shared-modules=ALL"
"--with-system-mitkrb5"
2020-03-24 06:59:16 +00:00
"--with-system-mitkdc=${krb5Full}"
"--enable-fhs"
"--sysconfdir=/etc"
"--localstatedir=/var"
"--disable-rpath"
] ++ singleton (if enableDomainController
then "--with-experimental-mit-ad-dc"
else "--without-ad-dc")
2020-03-24 06:59:16 +00:00
++ optionals (!enableLDAP) [
"--without-ldap"
"--without-ads"
] ++ optional (!enableAcl) "--without-acl-support"
++ optional (!enablePam) "--without-pam";
2015-03-04 21:46:20 +00:00
preBuild = ''
export MAKEFLAGS="-j $NIX_BUILD_CORES"
'';
2015-01-03 05:21:34 +00:00
2016-02-27 20:18:31 +00:00
# Some libraries don't have /lib/samba in RPATH but need it.
# Use find -type f -executable -exec echo {} \; -exec sh -c 'ldd {} | grep "not found"' \;
# Looks like a bug in installer scripts.
2015-03-13 00:34:22 +00:00
postFixup = ''
export SAMBA_LIBS="$(find $out -type f -name \*.so -exec dirname {} \; | sort | uniq)"
2015-06-10 23:22:37 +00:00
read -r -d "" SCRIPT << EOF || true
2015-03-13 00:34:22 +00:00
[ -z "\$SAMBA_LIBS" ] && exit 1;
BIN='{}';
OLD_LIBS="\$(patchelf --print-rpath "\$BIN" 2>/dev/null | tr ':' '\n')";
ALL_LIBS="\$(echo -e "\$SAMBA_LIBS\n\$OLD_LIBS" | sort | uniq | tr '\n' ':')";
patchelf --set-rpath "\$ALL_LIBS" "\$BIN" 2>/dev/null || exit $?;
patchelf --shrink-rpath "\$BIN";
EOF
2016-02-27 20:18:31 +00:00
find $out -type f -name \*.so -exec $SHELL -c "$SCRIPT" \;
2015-03-13 00:34:22 +00:00
'';
meta = with stdenv.lib; {
homepage = "https://www.samba.org";
2015-01-03 05:21:34 +00:00
description = "The standard Windows interoperability suite of programs for Linux and Unix";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ aneeshusa ];
2015-01-03 05:21:34 +00:00
};
}