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

115 lines
3.8 KiB
Nix
Raw Normal View History

2019-04-17 20:50:08 +00:00
{ lib, stdenv, fetchurl, python, pkgconfig, perl, libxslt, docbook_xsl, rpcgen
, fixDarwinDylibNames
, docbook_xml_dtd_42, readline
2016-09-30 19:16:17 +00:00
, popt, iniparser, libbsd, libarchive, libiconv, gettext
, krb5Full, zlib, openldap, cups, pam, avahi, acl, libaio, fam, libceph, glusterfs
, gnutls, ncurses, libunwind, systemd, jansson, lmdb, gpgme
, enableLDAP ? false
, enablePrinting ? false
, enableMDNS ? false
, enableDomainController ? false
, enableRegedit ? true
, enableCephFS ? false
, enableGlusterFS ? false
, enableAcl ? (!stdenv.isDarwin)
, enablePam ? (!stdenv.isDarwin)
2015-01-03 05:21:34 +00:00
}:
with lib;
2015-04-04 01:33:36 +00:00
2015-01-03 05:21:34 +00:00
stdenv.mkDerivation rec {
pname = "samba";
version = "4.10.6";
2015-01-03 05:21:34 +00:00
src = fetchurl {
url = "mirror://samba/pub/samba/stable/${pname}-${version}.tar.gz";
sha256 = "0hpgdqlyczj98pkh2ldglvvnkrb1q541r3qikdvxq0qjvd9fpywy";
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
];
2019-04-20 12:33:35 +00:00
nativeBuildInputs = optionals stdenv.isDarwin [ rpcgen fixDarwinDylibNames ];
2019-04-17 20:50:08 +00:00
buildInputs =
[ python pkgconfig perl libxslt docbook_xsl docbook_xml_dtd_42 /*
docbook_xml_dtd_45 */ readline popt iniparser jansson
libbsd libarchive zlib fam libiconv gettext libunwind krb5Full
]
++ optionals stdenv.isLinux [ libaio systemd ]
++ optional enableLDAP openldap
++ optional (enablePrinting && stdenv.isLinux) cups
++ optional enableMDNS avahi
++ optionals enableDomainController [ gnutls gpgme lmdb ]
++ optional enableRegedit ncurses
++ optional (enableCephFS && stdenv.isLinux) libceph
++ optional (enableGlusterFS && stdenv.isLinux) glusterfs
++ 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
2019-04-17 20:50:08 +00:00
'' + optionalString stdenv.isDarwin ''
substituteInPlace libcli/dns/wscript_build \
--replace "bld.SAMBA_BINARY('resolvconftest'" "True or bld.SAMBA_BINARY('resolvconftest'"
2015-03-13 00:34:22 +00:00
'';
configureFlags =
[ "--with-static-modules=NONE"
"--with-shared-modules=ALL"
2016-02-27 20:18:31 +00:00
"--with-system-mitkrb5"
2019-09-08 23:38:31 +00:00
"--with-system-mitkdc" krb5Full
"--enable-fhs"
"--sysconfdir=/etc"
"--localstatedir=/var"
2019-04-20 12:33:35 +00:00
"--disable-rpath"
]
++ [(if enableDomainController
then "--with-experimental-mit-ad-dc"
else "--without-ad-dc")]
++ 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; {
2018-06-27 20:12:57 +00:00
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
};
}