mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
ocaml-http: adds missing dependency to camlp4
This commit is contained in:
parent
4f0bc8e060
commit
35c92ec1ac
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue