about summary refs log tree commit diff
path: root/pkgs/servers/http/hiawatha
diff options
context:
space:
mode:
authorRaphael Robatsch <raphael-git@tapesoftware.net>2022-12-05 18:16:18 +0100
committerRaphael Robatsch <raphael-git@tapesoftware.net>2022-12-07 19:58:55 +0000
commit985c8dbe14eb901dac7abeeeab2df1e321b89f11 (patch)
tree5ff0237fdf6a96b00e079081ae9bc17df8be46ca /pkgs/servers/http/hiawatha
parent100cad48588f8491afad78e7014791ce88f312b2 (diff)
downloadnixlib-985c8dbe14eb901dac7abeeeab2df1e321b89f11.tar
nixlib-985c8dbe14eb901dac7abeeeab2df1e321b89f11.tar.gz
nixlib-985c8dbe14eb901dac7abeeeab2df1e321b89f11.tar.bz2
nixlib-985c8dbe14eb901dac7abeeeab2df1e321b89f11.tar.lz
nixlib-985c8dbe14eb901dac7abeeeab2df1e321b89f11.tar.xz
nixlib-985c8dbe14eb901dac7abeeeab2df1e321b89f11.tar.zst
nixlib-985c8dbe14eb901dac7abeeeab2df1e321b89f11.zip
treewide: use mbedtls 3 where possible
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/servers/http/hiawatha')
-rw-r--r--pkgs/servers/http/hiawatha/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/http/hiawatha/default.nix b/pkgs/servers/http/hiawatha/default.nix
index 2ab0b12c483f..d92d5d51a4f8 100644
--- a/pkgs/servers/http/hiawatha/default.nix
+++ b/pkgs/servers/http/hiawatha/default.nix
@@ -3,7 +3,7 @@
 
 , cmake
 , ninja
-, mbedtls
+, mbedtls_2
 , libxcrypt
 
 , enableCache     ? true     # Internal cache support.
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ cmake ninja ];
-  buildInputs = [ mbedtls libxcrypt ] ++ lib.optionals enableXslt [ libxslt libxml2 ];
+  buildInputs = [ mbedtls_2 libxcrypt ] ++ lib.optionals enableXslt [ libxslt libxml2 ];
 
   prePatch = ''
     substituteInPlace CMakeLists.txt --replace SETUID ""