2015-06-01 14:28:05 +01:00
|
|
|
{ lib, stdenv, fetchurl, python, pkgconfig, perl, libxslt, docbook_xsl
|
2016-09-30 20:16:17 +01:00
|
|
|
, docbook_xml_dtd_42, docbook_xml_dtd_45, readline, talloc
|
|
|
|
, popt, iniparser, libbsd, libarchive, libiconv, gettext
|
2018-03-08 03:23:59 +00:00
|
|
|
, krb5Full, zlib, openldap, cups, pam, avahi, acl, libaio, fam, libceph, glusterfs
|
2015-06-01 14:28:05 +01:00
|
|
|
, gnutls, libgcrypt, libgpgerror
|
|
|
|
, ncurses, libunwind, libibverbs, librdmacm, systemd
|
|
|
|
|
|
|
|
, enableInfiniband ? false
|
|
|
|
, enableLDAP ? false
|
|
|
|
, enablePrinting ? false
|
|
|
|
, enableMDNS ? false
|
|
|
|
, enableDomainController ? false
|
|
|
|
, enableRegedit ? true
|
|
|
|
, enableCephFS ? false
|
|
|
|
, enableGlusterFS ? false
|
2015-01-03 05:21:34 +00:00
|
|
|
}:
|
|
|
|
|
2015-06-01 14:28:05 +01:00
|
|
|
with lib;
|
2015-04-04 02:33:36 +01:00
|
|
|
|
2015-01-03 05:21:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-10-16 00:21:06 +01:00
|
|
|
name = "samba-${version}";
|
2018-03-13 14:30:58 +00:00
|
|
|
version = "4.7.6";
|
2015-01-03 05:21:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-08 21:29:27 +00:00
|
|
|
url = "mirror://samba/pub/samba/stable/${name}.tar.gz";
|
2018-03-13 14:30:58 +00:00
|
|
|
sha256 = "0vkxqp3wh7bpn1fd45lznmrpn2ma1fq75yq28vi08rggr07y7v8y";
|
2015-01-03 05:21:34 +00:00
|
|
|
};
|
|
|
|
|
2016-09-19 14:37:59 +01:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2015-06-01 14:28:05 +01:00
|
|
|
patches =
|
|
|
|
[ ./4.x-no-persistent-install.patch
|
2018-01-18 21:55:43 +00:00
|
|
|
./patch-source3__libads__kerberos_keytab.c.patch
|
2017-12-26 19:26:29 +00:00
|
|
|
./4.x-no-persistent-install-dynconfig.patch
|
2015-07-21 17:53:55 +01:00
|
|
|
];
|
2015-06-01 14:28:05 +01:00
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ python pkgconfig perl libxslt docbook_xsl docbook_xml_dtd_42 /*
|
2016-09-30 20:16:17 +01:00
|
|
|
docbook_xml_dtd_45 */ readline talloc popt iniparser
|
2018-03-08 03:23:59 +00:00
|
|
|
libbsd libarchive zlib acl fam libiconv gettext libunwind krb5Full
|
2015-06-01 14:28:05 +01:00
|
|
|
]
|
|
|
|
++ optionals stdenv.isLinux [ libaio pam systemd ]
|
|
|
|
++ optionals (enableInfiniband && stdenv.isLinux) [ libibverbs librdmacm ]
|
|
|
|
++ optional enableLDAP openldap
|
|
|
|
++ optional (enablePrinting && stdenv.isLinux) cups
|
|
|
|
++ optional enableMDNS avahi
|
|
|
|
++ optional enableDomainController gnutls
|
|
|
|
++ optional enableRegedit ncurses
|
|
|
|
++ optional (enableCephFS && stdenv.isLinux) libceph
|
|
|
|
++ optional (enableGlusterFS && stdenv.isLinux) glusterfs;
|
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 01:43:47 +01:00
|
|
|
|
|
|
|
# Fix the XML Catalog Paths
|
|
|
|
sed -i "s,\(XML_CATALOG_FILES=\"\),\1$XML_CATALOG_FILES ,g" buildtools/wafsamba/wafsamba.py
|
2015-03-13 00:34:22 +00:00
|
|
|
'';
|
|
|
|
|
2015-06-01 14:28:05 +01:00
|
|
|
configureFlags =
|
|
|
|
[ "--with-static-modules=NONE"
|
|
|
|
"--with-shared-modules=ALL"
|
2016-02-27 20:18:31 +00:00
|
|
|
"--with-system-mitkrb5"
|
2018-03-08 03:23:59 +00:00
|
|
|
"--with-system-mitkdc" "${krb5Full}"
|
2015-06-01 14:28:05 +01:00
|
|
|
"--enable-fhs"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
]
|
|
|
|
++ optional (!enableDomainController) "--without-ad-dc"
|
|
|
|
++ optionals (!enableLDAP) [ "--without-ldap" "--without-ads" ];
|
2015-03-04 21:46:20 +00:00
|
|
|
|
2017-03-20 12:20:54 +00:00
|
|
|
# To build in parallel.
|
|
|
|
buildPhase = "python buildtools/bin/waf build -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-11 00:22:37 +01: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
|
|
|
'';
|
|
|
|
|
2015-06-01 20:29:47 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-01-03 05:21:34 +00:00
|
|
|
homepage = http://www.samba.org/;
|
|
|
|
description = "The standard Windows interoperability suite of programs for Linux and Unix";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|