2005-09-12 17:20:57 +02:00
|
|
|
{stdenv, fetchurl, openssl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "vsftpd-2.0.3";
|
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/vsftpd-2.0.3.tar.gz;
|
2005-09-12 17:20:57 +02:00
|
|
|
md5 = "74936cbd8e8251deb1cd99c5fb18b6f8" ;
|
|
|
|
};
|
|
|
|
|
|
|
|
NIX_LDFLAGS = [ "-lcrypt" "-lssl" "-lcrypto" ];
|
|
|
|
|
|
|
|
builder = ./builder.sh ;
|
|
|
|
|
|
|
|
patches = [ ./fix.patch ] ;
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
}
|