ocamlPackages.odoc: init at 1.2.0

This commit is contained in:
Vincent Laporte 2018-09-16 04:43:10 +00:00 committed by Vincent Laporte
parent 886acaff11
commit cbc609ca8c
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, ocaml, findlib, dune
, bos, cmdliner, doc-ock-html, doc-ock-xml
}:
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-odoc-${version}";
version = "1.2.0";
src = fetchFromGitHub {
owner = "ocaml";
repo = "odoc";
rev = "v${version}";
sha256 = "0ixnhfpm1nw4bvjj8qhcyy283pdr5acqpg5wxwq3n1l4mad79cgh";
};
buildInputs = [ ocaml findlib dune cmdliner ];
propagatedBuildInputs = [ bos doc-ock-html doc-ock-xml ];
inherit (dune) installPhase;
meta = {
description = "A documentation generator for OCaml";
license = stdenv.lib.licenses.isc;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (ocaml.meta) platforms;
inherit (src.meta) homepage;
};
}

View File

@ -539,6 +539,8 @@ let
octavius = callPackage ../development/ocaml-modules/octavius { };
odoc = callPackage ../development/ocaml-modules/odoc { };
ojquery = callPackage ../development/ocaml-modules/ojquery { };
omd = callPackage ../development/ocaml-modules/omd { };