pure-ftpd: enable tls support

For encrypted command & data channels.
This commit is contained in:
Joachim Fasting 2017-05-25 21:10:55 +02:00
parent 231b23ffb4
commit 9145b386b6
No known key found for this signature in database
GPG key ID: 7544761007FE4E08

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "pure-ftpd-1.0.46";
@ -8,6 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "0p0arcaz63fbb03fkavbc8z6m1f90p5vbnxb8mqlvpma6mrq0286";
};
buildInputs = [ openssl ];
configureFlags = [ "--with-tls" ];
meta = with stdenv.lib; {
description = "A free, secure, production-quality and standard-conformant FTP server";
homepage = https://www.pureftpd.org;