about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-29 17:27:45 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-09 18:10:35 +0200
commit167544c2df5c76d84819d8421f823be886691ff2 (patch)
tree09fe038b01bf6cbecbb753242b04cb2c2e1c5ae3 /pkgs/servers/http
parent555d39b246e9b7339d27634a483076adbecd0d23 (diff)
tengine: fix build with libxcrypt
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/tengine/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/http/tengine/default.nix b/pkgs/servers/http/tengine/default.nix
index d7c8ea226febf..d464f7aa3e5f2 100644
--- a/pkgs/servers/http/tengine/default.nix
+++ b/pkgs/servers/http/tengine/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, openssl, zlib, pcre, libxml2, libxslt
+{ lib, stdenv, fetchFromGitHub, openssl, zlib, pcre, libxcrypt, libxml2, libxslt
 , substituteAll, gd, geoip, gperftools, jemalloc, nixosTests
 , withDebug ? false
 , withMail ? false
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs =
-    [ openssl zlib pcre libxml2 libxslt gd geoip gperftools jemalloc ]
+    [ openssl zlib pcre libxcrypt libxml2 libxslt gd geoip gperftools jemalloc ]
     ++ concatMap (mod: mod.inputs or []) modules;
 
   patches = singleton (substituteAll {