nntp-proxy: fix build with libxcrypt

authored by

Franz Pletz and committed by
Martin Weinelt
58bbfeb6 cfc636c3

+2 -2
+2 -2
pkgs/applications/networking/nntp-proxy/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, libconfig, pkg-config, libevent, openssl }: 1 + { lib, stdenv, fetchFromGitHub, libconfig, pkg-config, libevent, openssl, libxcrypt }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "nntp-proxy"; ··· 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config ]; 15 - buildInputs = [ libconfig libevent openssl ]; 15 + buildInputs = [ libconfig libevent openssl libxcrypt ]; 16 16 17 17 installFlags = [ "INSTALL_DIR=$(out)/bin/" ]; 18 18