mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
pure-ftpd: fix build with libxcrypt
This commit is contained in:
parent
64e160c0b0
commit
24bc4540bf
@ -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" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user