mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add ocaml-rresult.
* gnu/packages/ocaml.scm (ocaml-rresult): New variable. Signed-off-by: David Craven <david@craven.ch>
This commit is contained in:
parent
a359c7277c
commit
63147e5e1e
1 changed files with 30 additions and 0 deletions
|
@ -1123,3 +1123,33 @@ (define-public ocaml-topkg
|
||||||
configuration and to specify information about the package's distribution,
|
configuration and to specify information about the package's distribution,
|
||||||
creation and publication procedures.")
|
creation and publication procedures.")
|
||||||
(license license:isc)))
|
(license license:isc)))
|
||||||
|
|
||||||
|
(define-public ocaml-rresult
|
||||||
|
(package
|
||||||
|
(name "ocaml-rresult")
|
||||||
|
(version "0.5.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://erratique.ch/software/rresult/releases/"
|
||||||
|
"rresult-" version ".tbz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1xxycxhdhaq8p9vhwi93s2mlxjwgm44fcxybx5vghzgbankz9yhm"))))
|
||||||
|
(build-system ocaml-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("opam" ,opam)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("topkg" ,ocaml-topkg)))
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f
|
||||||
|
#:build-flags '("build")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'configure))))
|
||||||
|
(home-page "http://erratique.ch/software/rresult")
|
||||||
|
(synopsis "Result value combinators for OCaml")
|
||||||
|
(description "Handle computation results and errors in an explicit and
|
||||||
|
declarative manner, without resorting to exceptions. It defines combinators
|
||||||
|
to operate on the result type available from OCaml 4.03 in the standard
|
||||||
|
library.")
|
||||||
|
(license license:isc)))
|
||||||
|
|
Loading…
Reference in a new issue