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

23 lines
641 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl }:
2016-04-10 15:53:07 +00:00
stdenv.mkDerivation rec {
name = "pure-ftpd-1.0.49";
2016-04-10 15:53:07 +00:00
src = fetchurl {
url = "https://download.pureftpd.org/pub/pure-ftpd/releases/${name}.tar.gz";
sha256 = "19cjr262n6h560fi9nm7l1srwf93k34bp8dp1c6gh90bqxcg8yvn";
2016-04-10 15:53:07 +00:00
};
buildInputs = [ openssl ];
configureFlags = [ "--with-tls" ];
2016-04-10 15:53:07 +00: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 15:53:07 +00:00
maintainers = [ maintainers.lethalman ];
2018-03-24 01:23:30 +00:00
platforms = platforms.linux;
2016-04-10 15:53:07 +00:00
};
}