pure-ftpd: fix build with libxcrypt

authored by Franz Pletz and committed by Martin Weinelt 24bc4540 64e160c0

+2 -2
+2 -2
pkgs/servers/ftp/pure-ftpd/default.nix
··· 1 - { lib, stdenv, fetchurl, openssl, pam, fetchpatch }: 1 + { lib, stdenv, fetchurl, openssl, pam, libxcrypt }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pure-ftpd"; ··· 9 9 sha256 = "sha256-QWD2a3ZhXuojl+rE6j8KFGt5KCB7ebxMwvma17e9lRM="; 10 10 }; 11 11 12 - buildInputs = [ openssl pam ]; 12 + buildInputs = [ openssl pam libxcrypt ]; 13 13 14 14 configureFlags = [ "--with-tls" ]; 15 15