pure-ftpd: fix build with libxcrypt

This commit is contained in:
Franz Pletz
2022-10-09 18:10:42 +02:00
committed by Martin Weinelt
parent 64e160c0b0
commit 24bc4540bf
+2 -2
View File
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, openssl, pam, fetchpatch }:
{ lib, stdenv, fetchurl, openssl, pam, libxcrypt }:
stdenv.mkDerivation rec {
pname = "pure-ftpd";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-QWD2a3ZhXuojl+rE6j8KFGt5KCB7ebxMwvma17e9lRM=";
};
buildInputs = [ openssl pam ];
buildInputs = [ openssl pam libxcrypt ];
configureFlags = [ "--with-tls" ];