diff options
author | Julien Lepiller <julien@lepiller.eu> | 2019-02-01 17:47:33 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2019-02-05 22:33:33 +0100 |
commit | 49b01fa3e9b780d62c1ead54a472aa607bd2a495 (patch) | |
tree | c700f266a4d2c3dcf1c9af647427d5ca24057db0 | |
parent | a0584d6c9758456930e243e7e16dd2472d51ddf5 (diff) | |
download | guix-49b01fa3e9b780d62c1ead54a472aa607bd2a495.tar guix-49b01fa3e9b780d62c1ead54a472aa607bd2a495.tar.gz |
gnu: Add ocaml-octavius.
* gnu/packages/ocaml.scm (ocaml-octavius): New variable.
-rw-r--r-- | gnu/packages/ocaml.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 7887058349..b5f63ba28a 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -5388,3 +5388,23 @@ storage of large amounts of data.") (license (list license:asl2.0 license:bsd-3)))) + +(define-public ocaml-octavius + (package + (name "ocaml-octavius") + (version "1.2.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ocaml-doc/octavius") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0gqfbwsh0zq4b9mvvlmg3zhpbfbvq8swqr31320aibbqydwf77hr")))) + (build-system dune-build-system) + (properties `((upstream-name . "octavius"))) + (home-page "https://github.com/ocaml-doc/octavius") + (synopsis "Ocamldoc comment syntax parser") + (description "Octavius is a library to parse the `ocamldoc` comment syntax.") + (license license:isc))) |