nixpkgs/pkgs/development/ocaml-modules/odoc/default.nix

25 lines
562 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildDunePackage
, astring, cmdliner, cppo, fpath, result, tyxml
}:
2018-09-16 05:43:10 +01:00
buildDunePackage rec {
pname = "odoc";
2020-02-13 03:06:12 +00:00
version = "1.5.0";
2018-09-16 05:43:10 +01:00
src = fetchFromGitHub {
owner = "ocaml";
repo = pname;
2018-11-04 06:24:52 +00:00
rev = version;
2020-02-13 03:06:12 +00:00
sha256 = "14ilq2glcvda8mfhj27jqqwx3392q8ssp9bq9agz7k1k6ilp9dai";
2018-09-16 05:43:10 +01:00
};
buildInputs = [ astring cmdliner cppo fpath result tyxml ];
2018-09-16 05:43:10 +01:00
meta = {
description = "A documentation generator for OCaml";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
2018-09-16 05:43:10 +01:00
inherit (src.meta) homepage;
};
}