2016-04-10 17:53:07 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pure-ftpd-1.0.42";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.pureftpd.org/pub/pure-ftpd/releases/${name}.tar.gz";
|
|
|
|
sha256 = "1yg7v1l3ng7c08nhh804k28y1f8ccmg0rq1a9l2sg45ib273mrvv";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A free, secure, production-quality and standard-conformant FTP server";
|
|
|
|
homepage = https://www.pureftpd.org;
|
2016-04-10 19:48:01 +02:00
|
|
|
license = licenses.isc; # with some parts covered by BSD3(?)
|
2016-04-10 17:53:07 +02:00
|
|
|
maintainers = [ maintainers.lethalman ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.linux;
|
2016-04-10 17:53:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|