a0159dee8e
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
17 lines
359 B
Nix
17 lines
359 B
Nix
{stdenv, fetchurl, openssl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "vsftpd-2.0.3";
|
|
src = fetchurl {
|
|
url = ftp://vsftpd.beasts.org/users/cevans/vsftpd-2.0.3.tar.gz;
|
|
md5 = "74936cbd8e8251deb1cd99c5fb18b6f8" ;
|
|
};
|
|
|
|
NIX_LDFLAGS = [ "-lcrypt" "-lssl" "-lcrypto" ];
|
|
|
|
builder = ./builder.sh ;
|
|
|
|
patches = [ ./fix.patch ] ;
|
|
buildInputs = [ openssl ];
|
|
}
|