nixpkgs/pkgs/servers/samba/default.nix
Yury G. Kudryashov 9552457d84 Trying to fix samba evaluation on freebsd
svn path=/nixpkgs/branches/stdenv-updates/; revision=10298
2008-01-25 16:01:06 +00:00

19 lines
619 B
Nix

args: with args;
stdenv.mkDerivation rec {
name = "samba-3.0.28";
src = fetchurl {
url = "http://us1.samba.org/samba/ftp/stable/${name}.tar.gz";
sha256 = "13nr4mvh6vxgl7nb94qnqx3njcyd10cf4ji18srlkizpp49r5byw";
};
buildInputs = [readline pam openldap kerberos popt iniparser libunwind fam];
configureFlags = ''--with-pam --with-smbmount --datadir=$out/share
--with-aio-support ''
+ (if (stdenv.gcc ? libc && stdenv.gcc.libc) then "--with-libiconv=${stdenv.gcc.libc}" else "");
postUnpack = "sourceRoot=\$sourceRoot/source";
postInstall = ''rm -rf $out/var ; ln -s /var/samba $out/var '';
}