mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: Add ocaml-either.
* gnu/packages/ocaml.scm (ocaml-either): New variable.
This commit is contained in:
parent
5ad2dcecdc
commit
af365f0001
1 changed files with 23 additions and 0 deletions
|
@ -7476,6 +7476,29 @@ (define-public ocaml-dune-build-info
|
|||
reporting the version from the version control system during development to
|
||||
get an precise reference of when the executable was built.")))
|
||||
|
||||
(define-public ocaml-either
|
||||
(package
|
||||
(name "ocaml-either")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/mirage/either")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "099p1m24vz5i0043zcfp88krzjsa2qbrphrm4bnx84gif5vgkxwm"))))
|
||||
(build-system dune-build-system)
|
||||
(arguments
|
||||
;; no tests
|
||||
`(#:tests? #f))
|
||||
(home-page "https://github.com/mirage/either")
|
||||
(synopsis "Compatibility Either module")
|
||||
(description "This library is a compatibility module for the Either module
|
||||
defined in OCaml 4.12.0.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ocamlformat
|
||||
(package
|
||||
(name "ocamlformat")
|
||||
|
|
Loading…
Reference in a new issue