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

97 lines
3.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, python, pkgconfig, perl, libxslt, docbook_xsl
2016-09-30 19:16:17 +00:00
, docbook_xml_dtd_42, docbook_xml_dtd_45, readline, talloc
, popt, iniparser, libbsd, libarchive, libiconv, gettext
, kerberos, zlib, openldap, cups, pam, avahi, acl, libaio, fam, libceph, glusterfs
, 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
}:
with lib;
2015-04-04 01:33:36 +00:00
2015-01-03 05:21:34 +00:00
stdenv.mkDerivation rec {
2016-10-15 23:21:06 +00:00
name = "samba-${version}";
2018-01-18 20:27:54 +00:00
version = "4.7.4";
2015-01-03 05:21:34 +00:00
src = fetchurl {
url = "mirror://samba/pub/samba/stable/${name}.tar.gz";
2018-01-18 20:27:54 +00:00
sha256 = "0iw290n0q4l5s92d0f9yz27yp3rdfr6bvsmvg1xvd19g8p2d04pv";
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
];
buildInputs =
[ python pkgconfig perl libxslt docbook_xsl docbook_xml_dtd_42 /*
2016-09-30 19:16:17 +00:00
docbook_xml_dtd_45 */ readline talloc popt iniparser
2016-02-27 20:18:31 +00:00
libbsd libarchive zlib acl fam libiconv gettext libunwind kerberos
]
++ 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 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
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"
"--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-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; {
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;
};
}