nixpkgs/pkgs/servers/ftp/vsftpd/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

17 lines
356 B
Nix

{stdenv, fetchurl, openssl}:
stdenv.mkDerivation {
name = "vsftpd-2.0.3";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/vsftpd-2.0.3.tar.gz;
md5 = "74936cbd8e8251deb1cd99c5fb18b6f8" ;
};
NIX_LDFLAGS = [ "-lcrypt" "-lssl" "-lcrypto" ];
builder = ./builder.sh ;
patches = [ ./fix.patch ] ;
buildInputs = [ openssl ];
}