mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pure-ftpd: enable tls support
For encrypted command & data channels.
This commit is contained in:
parent
231b23ffb4
commit
9145b386b6
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue