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