1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/servers/ftp/pure-ftpd/default.nix

23 lines
640 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl }:
2016-04-10 16:53:07 +01:00
stdenv.mkDerivation rec {
name = "pure-ftpd-1.0.46";
2016-04-10 16:53:07 +01:00
src = fetchurl {
url = "https://download.pureftpd.org/pub/pure-ftpd/releases/${name}.tar.gz";
sha256 = "0p0arcaz63fbb03fkavbc8z6m1f90p5vbnxb8mqlvpma6mrq0286";
2016-04-10 16:53:07 +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;
license = licenses.isc; # with some parts covered by BSD3(?)
2016-04-10 16:53:07 +01:00
maintainers = [ maintainers.lethalman ];
2017-05-25 20:57:46 +01:00
platforms = platforms.unix;
2016-04-10 16:53:07 +01:00
};
}