about summary refs log tree commit diff
path: root/pkgs/applications/networking/nntp-proxy
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2022-09-30 02:57:03 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-09 18:10:44 +0200
commit58bbfeb6985c406ef55ff3cd927bb723c612c023 (patch)
treeb58f9cc6e5421e45ea846da4d74f904f9a6b8614 /pkgs/applications/networking/nntp-proxy
parentcfc636c357a07270223ec96c5be507faecada6e1 (diff)
nntp-proxy: fix build with libxcrypt
Diffstat (limited to 'pkgs/applications/networking/nntp-proxy')
-rw-r--r--pkgs/applications/networking/nntp-proxy/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/nntp-proxy/default.nix b/pkgs/applications/networking/nntp-proxy/default.nix
index 626913cd60a43..a3a136a32695c 100644
--- a/pkgs/applications/networking/nntp-proxy/default.nix
+++ b/pkgs/applications/networking/nntp-proxy/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, libconfig, pkg-config, libevent, openssl }:
+{ lib, stdenv, fetchFromGitHub, libconfig, pkg-config, libevent, openssl, libxcrypt }:
 
 stdenv.mkDerivation {
   pname = "nntp-proxy";
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
   };
 
   nativeBuildInputs = [ pkg-config ];
-  buildInputs = [ libconfig libevent openssl ];
+  buildInputs = [ libconfig libevent openssl libxcrypt ];
 
   installFlags = [ "INSTALL_DIR=$(out)/bin/" ];