summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/http/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/http/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/http/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/http/default.nix b/pkgs/development/ocaml-modules/http/default.nix
index 3936eb13c2fb..b1cae90a6184 100644
--- a/pkgs/development/ocaml-modules/http/default.nix
+++ b/pkgs/development/ocaml-modules/http/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml_pcre, ocamlnet, ocaml, findlib, camlp4}:
+{lib, stdenv, fetchurl, ocaml_pcre, ocamlnet, ocaml, findlib, camlp4}:
if stdenv.lib.versionAtLeast ocaml.version "4.06"
then throw "ocaml-http is not available for OCaml ${ocaml.version}"
@@ -29,7 +29,7 @@ stdenv.mkDerivation {
make all opt
'';
- meta = with stdenv.lib; {
+ meta = with lib; {
homepage = "http://ocaml-http.forge.ocamlcore.org/";
platforms = ocaml.meta.platforms or [];
description = "Do it yourself (OCaml) HTTP daemon";