0be5d907b8
Previous samba package is buggy: for example, builder.sh tries to install something to /var. I've written new package. Currently it builds, and I have no Windows network to check whether it works. * There is no upstart job yet because I don't need server, only client. svn path=/nixpkgs/trunk/; revision=9459
15 lines
384 B
Nix
15 lines
384 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "samba-3.0.26a";
|
|
|
|
src = fetchurl {
|
|
url = http://us1.samba.org/samba/ftp/stable/samba-3.0.26a.tar.gz;
|
|
sha256 = "41e11f69288b2291f12f8db093e2c55dc1360555d4542c83c0758c4c7a3d4d37";
|
|
};
|
|
|
|
buildInputs = [readline pam openldap];
|
|
configureFlags = "--with-pam --with-smbmount";
|
|
postUnpack = "sourceRoot=\$sourceRoot/source";
|
|
}
|