mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 00:57:53 +00:00
vsftpd: fix build with libxcrypt
This commit is contained in:
parent
5b572c5377
commit
52f2785e67
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, libcap, libseccomp, openssl, pam, nixosTests }:
|
||||
{ lib, stdenv, fetchurl, libcap, libseccomp, openssl, pam, libxcrypt, nixosTests }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vsftpd";
|
||||
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-JrYCrkVLC6bZnvRKCba54N+n9nIoEGc23x8njHC8kdM=";
|
||||
};
|
||||
|
||||
buildInputs = [ libcap openssl libseccomp pam ];
|
||||
buildInputs = [ libcap openssl libseccomp pam libxcrypt ];
|
||||
|
||||
patches = [ ./CVE-2015-1419.patch ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user