about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2019-12-21 22:38:07 +0000
committerJörg Thalheim <joerg@thalheim.io>2019-12-21 22:55:58 +0000
commitb9bc38934b166bd8e03255a5c9e3ef2fcbe6a208 (patch)
treeb4bb09b35f2ca5aa4591d93dc09c126d114809b2 /pkgs/servers/http
parenta446ac2bb094a9bf61b5489983f5ebb6c0e5f36b (diff)
downloadnixlib-b9bc38934b166bd8e03255a5c9e3ef2fcbe6a208.tar
nixlib-b9bc38934b166bd8e03255a5c9e3ef2fcbe6a208.tar.gz
nixlib-b9bc38934b166bd8e03255a5c9e3ef2fcbe6a208.tar.bz2
nixlib-b9bc38934b166bd8e03255a5c9e3ef2fcbe6a208.tar.lz
nixlib-b9bc38934b166bd8e03255a5c9e3ef2fcbe6a208.tar.xz
nixlib-b9bc38934b166bd8e03255a5c9e3ef2fcbe6a208.tar.zst
nixlib-b9bc38934b166bd8e03255a5c9e3ef2fcbe6a208.zip
h2o: build with openssl
otherwise we get symbol conflicts, once we link it against applications using
openssl
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/h2o/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/http/h2o/default.nix b/pkgs/servers/http/h2o/default.nix
index a8de0d7e0849..d599956cfda9 100644
--- a/pkgs/servers/http/h2o/default.nix
+++ b/pkgs/servers/http/h2o/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub
 , pkgconfig, cmake, ninja
-, libressl, libuv, zlib
+, openssl, libuv, zlib
 }:
 
 stdenv.mkDerivation rec {
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
   nativeBuildInputs = [ pkgconfig cmake ninja ];
-  buildInputs = [ libressl libuv zlib ];
+  buildInputs = [ openssl libuv zlib ];
 
   meta = with stdenv.lib; {
     description = "Optimized HTTP/1 and HTTP/2 server";