mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
8d6fd9cb2b
svn path=/nixpkgs/trunk/; revision=15315
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ stdenv, fetchurl, readline, pam, openldap, kerberos, popt
|
|
, iniparser, libunwind, fam, acl
|
|
|
|
# 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"
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "samba-3.3.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://us3.samba.org/samba/ftp/stable/${name}.tar.gz";
|
|
sha256 = "08x3ng7ls5c1a95v7djx362i55wdlmnvarpr7rhng5bb55s9n5qn";
|
|
};
|
|
|
|
buildInputs = [readline pam openldap kerberos popt iniparser libunwind fam acl];
|
|
|
|
preConfigure = "cd source";
|
|
|
|
postInstall = if configDir == ""
|
|
then "touch $out/lib/smb.conf"
|
|
else "";
|
|
|
|
|
|
# Don't pass --with-private-dir=/var/samba/private
|
|
# --with-lockdir=/var/samba/lock
|
|
# the build system will try to create it.
|
|
configureFlags = ''
|
|
--with-pam
|
|
--with-cifsmount
|
|
--with-aio-support
|
|
--with-pam_smbpass
|
|
--disable-swat
|
|
--enable-shared-libs
|
|
--with-configdir=${configDir}
|
|
${if stdenv.gcc.libc != null then "--with-libiconv=${stdenv.gcc.libc}" else ""}
|
|
'';
|
|
}
|