about summary refs log tree commit diff
path: root/pkgs/servers/http/hiawatha
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2022-09-29 17:06:26 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-09 18:10:34 +0200
commitc82e7ee61b6bda4ab0cc0ffebf38ff599d65b671 (patch)
tree447920a29e242d1f4187610898c83abfd37544a8 /pkgs/servers/http/hiawatha
parent71dad513b387f047fe88f4f3036d1409ce6f1a9e (diff)
downloadnixlib-c82e7ee61b6bda4ab0cc0ffebf38ff599d65b671.tar
nixlib-c82e7ee61b6bda4ab0cc0ffebf38ff599d65b671.tar.gz
nixlib-c82e7ee61b6bda4ab0cc0ffebf38ff599d65b671.tar.bz2
nixlib-c82e7ee61b6bda4ab0cc0ffebf38ff599d65b671.tar.lz
nixlib-c82e7ee61b6bda4ab0cc0ffebf38ff599d65b671.tar.xz
nixlib-c82e7ee61b6bda4ab0cc0ffebf38ff599d65b671.tar.zst
nixlib-c82e7ee61b6bda4ab0cc0ffebf38ff599d65b671.zip
hiawatha: fix build with libxcrypt
Diffstat (limited to 'pkgs/servers/http/hiawatha')
-rw-r--r--pkgs/servers/http/hiawatha/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/servers/http/hiawatha/default.nix b/pkgs/servers/http/hiawatha/default.nix
index 950faf89bedb..2ab0b12c483f 100644
--- a/pkgs/servers/http/hiawatha/default.nix
+++ b/pkgs/servers/http/hiawatha/default.nix
@@ -4,6 +4,7 @@
 , cmake
 , ninja
 , mbedtls
+, libxcrypt
 
 , enableCache     ? true     # Internal cache support.
 , enableIpV6      ? true
@@ -27,7 +28,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ cmake ninja ];
-  buildInputs = [ mbedtls ] ++ lib.optionals enableXslt [ libxslt libxml2 ];
+  buildInputs = [ mbedtls libxcrypt ] ++ lib.optionals enableXslt [ libxslt libxml2 ];
 
   prePatch = ''
     substituteInPlace CMakeLists.txt --replace SETUID ""