2011-11-29 22:54:00 +00:00
|
|
|
{ stdenv, fetchurl, readline, pam ? null, openldap ? null
|
|
|
|
, popt, iniparser, libunwind
|
|
|
|
, fam ? null , acl ? null, cups ? null
|
2010-09-26 05:07:41 +00:00
|
|
|
, useKerberos ? false, kerberos ? null, winbind ? true
|
2009-04-26 11:06:41 +00:00
|
|
|
|
|
|
|
# Eg. smbclient and smbspool require a smb.conf file.
|
|
|
|
# If you set configDir to "" an empty configuration file
|
|
|
|
# $out/lib/smb.conf is is created for you.
|
|
|
|
#
|
|
|
|
# configDir defaults to "/etc/samba" so that smbpassword picks up
|
|
|
|
# the location of its passwd db files from the system configuration file
|
|
|
|
# /etc/samba/smb.conf. That's why nixos touches /etc/samba/smb.conf even if you
|
|
|
|
# don't enable the samba upstart service.
|
|
|
|
, configDir ? "/etc/samba"
|
2007-05-28 15:40:17 +00:00
|
|
|
|
2010-09-26 05:07:41 +00:00
|
|
|
}:
|
2010-12-06 18:59:07 +00:00
|
|
|
|
2011-11-29 22:54:00 +00:00
|
|
|
assert useKerberos -> kerberos != null;
|
2010-12-06 18:59:07 +00:00
|
|
|
|
2008-01-28 19:46:27 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2012-08-17 20:09:13 +00:00
|
|
|
name = "samba-3.6.7";
|
2007-05-28 15:40:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-04-04 00:59:55 +00:00
|
|
|
url = "http://us3.samba.org/samba/ftp/stable/${name}.tar.gz";
|
2012-08-17 20:09:13 +00:00
|
|
|
sha256 = "1jnl9v6axz30ymh6in1fwan7zjy9n5n7x70vi1afazxs27qa0n5q";
|
2007-05-28 15:40:17 +00:00
|
|
|
};
|
|
|
|
|
2011-10-21 23:36:48 +00:00
|
|
|
patches =
|
2012-08-17 20:09:13 +00:00
|
|
|
[ # Allow cross-builds for GNU/Hurd.
|
2012-02-23 00:01:24 +00:00
|
|
|
./libnss-wins-pthread.patch
|
2011-10-21 23:36:48 +00:00
|
|
|
];
|
|
|
|
|
2011-04-14 07:25:06 +00:00
|
|
|
buildInputs = [ readline pam openldap popt iniparser libunwind fam acl cups ]
|
2010-04-28 09:39:01 +00:00
|
|
|
++ stdenv.lib.optional useKerberos kerberos;
|
2008-03-11 17:01:55 +00:00
|
|
|
|
2011-04-13 15:31:22 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-11-29 22:54:00 +00:00
|
|
|
postPatch =
|
|
|
|
# XXX: Awful hack to allow cross-compilation.
|
|
|
|
'' sed -i source3/configure \
|
|
|
|
-e 's/^as_fn_error \("cannot run test program while cross compiling\)/$as_echo \1/g'
|
2012-02-23 00:01:24 +00:00
|
|
|
''; # "
|
2011-11-29 22:54:00 +00:00
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
'' cd source3
|
|
|
|
export samba_cv_CC_NEGATIVE_ENUM_VALUES=yes
|
|
|
|
export libreplace_cv_HAVE_GETADDRINFO=yes
|
|
|
|
export ac_cv_file__proc_sys_kernel_core_pattern=no # XXX: true on Linux, false elsewhere
|
|
|
|
'';
|
2008-11-07 13:05:05 +00:00
|
|
|
|
2011-11-29 22:54:00 +00:00
|
|
|
configureFlags =
|
|
|
|
stdenv.lib.optionals (pam != null) [ "--with-pam" "--with-pam_smbpass" ]
|
|
|
|
++ [ "--with-aio-support"
|
|
|
|
"--disable-swat"
|
|
|
|
"--with-configdir=${configDir}"
|
|
|
|
"--with-fhs"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
]
|
|
|
|
++ (stdenv.lib.optional winbind "--with-winbind")
|
|
|
|
++ (stdenv.lib.optional (stdenv.gcc.libc != null) "--with-libiconv=${stdenv.gcc.libc}");
|
2010-12-06 18:59:07 +00:00
|
|
|
|
|
|
|
# Need to use a DESTDIR because `make install' tries to write in /var and /etc.
|
|
|
|
installFlags = "DESTDIR=$(TMPDIR)/inst";
|
|
|
|
|
2011-08-10 20:19:36 +00:00
|
|
|
stripAllList = [ "bin" "sbin" ];
|
|
|
|
|
2010-12-06 18:59:07 +00:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
mkdir -p $out
|
|
|
|
mv $TMPDIR/inst/$out/* $out/
|
|
|
|
|
|
|
|
mkdir -pv $out/lib/cups/backend
|
|
|
|
ln -sv ../../../bin/smbspool $out/lib/cups/backend/smb
|
2011-04-13 15:31:22 +00:00
|
|
|
mkdir -pv $out/etc/openldap/schema
|
|
|
|
cp ../examples/LDAP/samba.schema $out/etc/openldap/schema
|
2010-12-06 18:59:07 +00:00
|
|
|
'' # */
|
|
|
|
+ stdenv.lib.optionalString (configDir == "") "touch $out/lib/smb.conf";
|
2007-05-28 15:40:17 +00:00
|
|
|
}
|