pure-ftpd: fix build with libxcrypt

This commit is contained in:
Franz Pletz 2022-09-30 02:31:09 +02:00 committed by Martin Weinelt
parent 64e160c0b0
commit 24bc4540bf
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

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" ];