31 lines
806 B
Nix
31 lines
806 B
Nix
{ lib, fetchurl, buildDunePackage, ocaml
|
|
, astring, cmdliner, cppo, fpath, result, tyxml
|
|
, markup, alcotest, yojson, sexplib, jq
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "odoc";
|
|
version = "1.5.2";
|
|
|
|
minimumOCamlVersion = "4.02";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocaml/odoc/releases/download/${version}/odoc-${version}.tbz";
|
|
sha256 = "0wa87h8q6izcc6rkzqn944vrb3hmc21lf0d0rmr8rhhbcvr66i6j";
|
|
};
|
|
|
|
useDune2 = true;
|
|
|
|
buildInputs = [ astring cmdliner cppo fpath result tyxml ];
|
|
|
|
checkInputs = [ alcotest markup yojson sexplib jq ];
|
|
doCheck = lib.versionAtLeast ocaml.version "4.05";
|
|
|
|
meta = {
|
|
description = "A documentation generator for OCaml";
|
|
license = lib.licenses.isc;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
homepage = "https://github.com/ocaml/odoc";
|
|
};
|
|
}
|