1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

ocaml-http: adds missing dependency to camlp4

This commit is contained in:
Vincent Laporte 2014-10-10 16:32:06 +01:00
parent 4f0bc8e060
commit 35c92ec1ac

View file

@ -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 ];
};
}