mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ocaml-octavius.
* gnu/packages/ocaml.scm (ocaml-octavius): New variable.
This commit is contained in:
parent
a0584d6c97
commit
49b01fa3e9
1 changed files with 20 additions and 0 deletions
|
@ -5388,3 +5388,23 @@ (define-public ocaml-bin-prot
|
|||
(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)))
|
||||
|
|
Loading…
Reference in a new issue