mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ocaml-uri.
* gnu/packages/ocaml.scm (ocaml-uri): New variable.
This commit is contained in:
parent
bf7bc0d6bb
commit
3dabefeef4
1 changed files with 26 additions and 0 deletions
|
@ -3227,6 +3227,32 @@ (define-public ocaml-ezjsonm
|
|||
JSON.")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public ocaml-uri
|
||||
(package
|
||||
(name "ocaml-uri")
|
||||
(version "1.9.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/mirage/ocaml-uri/archive/v"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"02bzrag79prx261rxf9mlak749pwf4flpfl8p012x1xznv9m0clc"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))))
|
||||
(build-system ocaml-build-system)
|
||||
(native-inputs
|
||||
`(("ounit" ,ocaml-ounit)))
|
||||
(propagated-inputs
|
||||
`(("ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
|
||||
("re" ,ocaml-re)
|
||||
("ppx-deriving" ,ocaml-ppx-deriving)
|
||||
("sexplib" ,ocaml-sexplib)
|
||||
("stringext" ,ocaml-stringext)))
|
||||
(home-page "https://github.com/mirage/ocaml-uri")
|
||||
(synopsis "RFC3986 URI/URL parsing library")
|
||||
(description "OCaml-uri is a library for parsing URI/URL in the RFC3986 format.")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public coq-flocq
|
||||
(package
|
||||
(name "coq-flocq")
|
||||
|
|
Loading…
Reference in a new issue