summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-10-10 16:32:06 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-10-10 17:00:30 +0100
commit35c92ec1ac7edbd93c1e7fc507da15ec5ff869c5 (patch)
tree1aa3f0984894be67c3faf32882d46b98c8ea08c8 /pkgs/development/ocaml-modules
parent4f0bc8e060d85e76dc84094e63c83200f3cf1be6 (diff)
downloadnixpkgs-35c92ec1ac7edbd93c1e7fc507da15ec5ff869c5.tar
nixpkgs-35c92ec1ac7edbd93c1e7fc507da15ec5ff869c5.tar.gz
nixpkgs-35c92ec1ac7edbd93c1e7fc507da15ec5ff869c5.tar.bz2
nixpkgs-35c92ec1ac7edbd93c1e7fc507da15ec5ff869c5.tar.lz
nixpkgs-35c92ec1ac7edbd93c1e7fc507da15ec5ff869c5.tar.xz
nixpkgs-35c92ec1ac7edbd93c1e7fc507da15ec5ff869c5.tar.zst
nixpkgs-35c92ec1ac7edbd93c1e7fc507da15ec5ff869c5.zip
ocaml-http: adds missing dependency to camlp4
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/http/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/http/default.nix b/pkgs/development/ocaml-modules/http/default.nix
index 8b611c65a41..59da5473ab1 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}:
+{stdenv, fetchurl, ocaml_pcre, ocamlnet, ocaml, findlib, camlp4}:
 
 let
   ocaml_version = (builtins.parseDrvName ocaml.name).version;
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
     sha256 = "070xw033r4pk6f4l0wcknm75y9qm4mp622a4cgzmcfhm58v6kssn";
   };
 
-  buildInputs = [ocaml_pcre ocamlnet ocaml findlib];
+  buildInputs = [ocaml_pcre ocamlnet ocaml findlib camlp4];
 
   createFindlibDestdir = true;
 
@@ -30,10 +30,10 @@ stdenv.mkDerivation {
     make all opt
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = "http://upsilon.cc/~zack/hacking/software/ocaml-http/";
     description = "do it yourself (OCaml) HTTP daemon";
-    license = stdenv.lib.licenses.lgpl2;
-    maintainers = [ stdenv.lib.maintainers.roconnor ];
+    license = licenses.lgpl2;
+    maintainers = with maintainers; [ roconnor vbgl ];
   };
 }