pure-ftpd: enable for darwin

This commit is contained in:
Robert Scott 2021-12-05 12:32:39 +00:00
parent b32487deda
commit 7ed01d754e

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, openssl, fetchpatch }:
{ lib, stdenv, fetchurl, openssl, pam, fetchpatch }:
stdenv.mkDerivation rec {
pname = "pure-ftpd";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "08zas1kg5pnckl28gs7q29952pjfyj8rj59bq96hscqbni7gkqmb";
};
buildInputs = [ openssl ];
buildInputs = [ openssl pam ];
configureFlags = [ "--with-tls" ];
@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.pureftpd.org";
license = licenses.isc; # with some parts covered by BSD3(?)
maintainers = [ ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}