ocamlPackages.odoc: 1.3.0 → 1.4.2

Ensures compatibility with OCaml 4.08
This commit is contained in:
Vincent Laporte 2019-09-23 05:53:20 +00:00
parent 6262e83f5f
commit 31aab48a0a
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,22 +1,24 @@
{ stdenv, fetchFromGitHub, buildDunePackage, cppo, bos, cmdliner, tyxml }:
{ lib, fetchFromGitHub, buildDunePackage
, astring, cmdliner, cppo, fpath, result, tyxml
}:
buildDunePackage rec {
pname = "odoc";
version = "1.3.0";
version = "1.4.2";
src = fetchFromGitHub {
owner = "ocaml";
repo = pname;
rev = version;
sha256 = "0hjan5aj5zk8j8qyagv9r4hqm469mh207cv2m6kxwgnw0c3cz7sy";
sha256 = "0rvhx139jx6wmlfz355mja6mk03x4swq1xxvk5ky6jzhalq3cf5i";
};
buildInputs = [ cppo bos cmdliner tyxml ];
buildInputs = [ astring cmdliner cppo fpath result tyxml ];
meta = {
description = "A documentation generator for OCaml";
license = stdenv.lib.licenses.isc;
maintainers = [ stdenv.lib.maintainers.vbgl ];
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
inherit (src.meta) homepage;
};
}