summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/odoc/default.nix
blob: 3b1005106272c69e0302c32a4ffcc0d3335a18bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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 ];

  configurePhase = "ocaml bin/set-etc bin/odoc_etc.ml $out/etc/odoc";

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