summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocsigen-server
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-10-05 17:09:50 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-10-05 17:09:50 +0000
commit9e754a6f86eefe47332031b63eb0088c76f8a985 (patch)
tree8ec7264ba0ed0c2a69b87496c68283a2b0ba4e2d /pkgs/development/ocaml-modules/ocsigen-server
parenteeda400b300ab1252911820d149ae5dd1bffe9f1 (diff)
downloadnixlib-9e754a6f86eefe47332031b63eb0088c76f8a985.tar
nixlib-9e754a6f86eefe47332031b63eb0088c76f8a985.tar.gz
nixlib-9e754a6f86eefe47332031b63eb0088c76f8a985.tar.bz2
nixlib-9e754a6f86eefe47332031b63eb0088c76f8a985.tar.lz
nixlib-9e754a6f86eefe47332031b63eb0088c76f8a985.tar.xz
nixlib-9e754a6f86eefe47332031b63eb0088c76f8a985.tar.zst
nixlib-9e754a6f86eefe47332031b63eb0088c76f8a985.zip
ocamlPackages.ssl: 0.5.3 -> 0.5.4
Diffstat (limited to 'pkgs/development/ocaml-modules/ocsigen-server')
-rw-r--r--pkgs/development/ocaml-modules/ocsigen-server/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/ocsigen-server/default.nix b/pkgs/development/ocaml-modules/ocsigen-server/default.nix
index 39375bc8ea1c..081f9edbecf9 100644
--- a/pkgs/development/ocaml-modules/ocsigen-server/default.nix
+++ b/pkgs/development/ocaml-modules/ocsigen-server/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib, which, react, ocaml_ssl,
+{ stdenv, fetchurl, ocaml, findlib, which, react, ssl,
 lwt, ocamlnet, ocaml_pcre, cryptokit, tyxml, ipaddr, zlib,
 libev, openssl, ocaml_sqlite3, tree, uutf, makeWrapper, camlp4
 , camlzip, pgocaml
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
     sha256 = "1v44qv2ixd7i1qinyhlzzqiffawsdl7xhhh6ysd7lf93kh46d5sy";
   };
 
-  buildInputs = [ocaml which findlib react ocaml_ssl lwt
+  buildInputs = [ocaml which findlib react ssl lwt
   ocamlnet ocaml_pcre cryptokit tyxml ipaddr zlib libev openssl
   ocaml_sqlite3 tree uutf makeWrapper camlp4 pgocaml camlzip ];
 
@@ -31,7 +31,7 @@ stdenv.mkDerivation {
   ''
   rm -rf $out/var/run
   wrapProgram $out/bin/ocsigenserver \
-    --prefix CAML_LD_LIBRARY_PATH : "${mkpath ocaml_ssl "ssl"}:${mkpath lwt "lwt"}:${mkpath ocamlnet "netsys"}:${mkpath ocamlnet "netstring"}:${mkpath ocaml_pcre "pcre"}:${mkpath cryptokit "cryptokit"}:${mkpath ocaml_sqlite3 "sqlite3"}"
+    --prefix CAML_LD_LIBRARY_PATH : "${mkpath ssl "ssl"}:${mkpath lwt "lwt"}:${mkpath ocamlnet "netsys"}:${mkpath ocamlnet "netstring"}:${mkpath ocaml_pcre "pcre"}:${mkpath cryptokit "cryptokit"}:${mkpath ocaml_sqlite3 "sqlite3"}"
   '';
 
   dontPatchShebangs = true;