nixpkgs/pkgs/servers/ftp/pure-ftpd/default.nix

23 lines
641 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl }:
2016-04-10 18:53:07 +03:00
stdenv.mkDerivation rec {
name = "pure-ftpd-1.0.48";
2016-04-10 18:53:07 +03:00
src = fetchurl {
url = "https://download.pureftpd.org/pub/pure-ftpd/releases/${name}.tar.gz";
sha256 = "1xr1wlf08qaw93irsbdk4kvhqnkvmi6p0jb8kiiz0vr0h92pszxl";
2016-04-10 18:53:07 +03:00
};
buildInputs = [ openssl ];
configureFlags = [ "--with-tls" ];
2016-04-10 18:53:07 +03:00
meta = with stdenv.lib; {
description = "A free, secure, production-quality and standard-conformant FTP server";
homepage = https://www.pureftpd.org;
license = licenses.isc; # with some parts covered by BSD3(?)
2016-04-10 18:53:07 +03:00
maintainers = [ maintainers.lethalman ];
2018-03-24 04:23:30 +03:00
platforms = platforms.linux;
2016-04-10 18:53:07 +03:00
};
}