mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
ocamlPackages.odoc: 1.3.0 → 1.4.2
Ensures compatibility with OCaml 4.08
This commit is contained in:
parent
6262e83f5f
commit
31aab48a0a
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue