[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#49203] [PATCH 2/2] gnu: Add ocaml-cohttp.
From: |
Xinglu Chen |
Subject: |
[bug#49203] [PATCH 2/2] gnu: Add ocaml-cohttp. |
Date: |
Thu, 24 Jun 2021 11:57:40 +0200 |
* gnu/packages/ocaml.scm (ocaml-cohttp): New variable.
---
gnu/packages/ocaml.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 681d77dd81..5e9883d604 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -7099,6 +7099,44 @@ up to OCaml 4.08.")
(description "This package adds S-exp support to @code{ocaml-uri}.")
(license license:isc)))
+(define-public ocaml-cohttp
+ (package
+ (name "ocaml-cohttp")
+ (version "4.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mirage/ocaml-cohttp")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "02d7417yy1i62by368w3wyw3756047pbrw69spcvz3cd1z7vqaci"))))
+ (build-system dune-build-system)
+ (arguments
+ '(#:package "cohttp"
+ #:test-target "cohttp_test/src"))
+ (propagated-inputs
+ `(("ocaml-re" ,ocaml-re)
+ ("ocaml-uri" ,ocaml-uri)
+ ("ocaml-uri-sexp" ,ocaml-uri-sexp)
+ ("ocaml-sexplib0" ,ocaml-sexplib0)
+ ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
+ ("ocaml-stringext" ,ocaml-stringext)
+ ("ocaml-base64" ,ocaml-base64)))
+ (native-inputs
+ `(("ocaml-fmt" ,ocaml-fmt)
+ ("ocaml-jsonm" ,ocaml-jsonm)
+ ("ocaml-alcotest" ,ocaml-alcotest)))
+ (home-page "https://github.com/mirage/ocaml-cohttp")
+ (synopsis "OCaml library for HTTP clients and servers")
+ (description
+ "Cohttp is an OCaml library for creating HTTP daemons. It has a portable
+HTTP parser, and implementations using various asynchronous programming
+libraries.")
+ (license license:isc)))
+
(define-public js-of-ocaml
(package
(name "js-of-ocaml")
--
2.32.0
- [bug#49203] [PATCH 0/2] Add ocaml-cohttp and dependencies, Xinglu Chen, 2021/06/24
- [bug#49203] [PATCH 1/2] gnu: Add ocaml-uri-sexp., Xinglu Chen, 2021/06/24
- [bug#49203] [PATCH 1/2] gnu: Add ocaml-uri-sexp., Adu O'Hara, 2021/06/24
- [bug#49203] [PATCH 1/2] gnu: Add ocaml-uri-sexp., Xinglu Chen, 2021/06/24
- [bug#49203] [PATCH 1/2] gnu: Add ocaml-uri-sexp., Adu O'Hara, 2021/06/24
- [bug#49203] [PATCH 1/2] gnu: Add ocaml-uri-sexp., Xinglu Chen, 2021/06/25
- [bug#49203] [PATCH 1/2] gnu: Add ocaml-uri-sexp., Adu O'Hara, 2021/06/25
- [bug#49203] [PATCH 1/2] gnu: Add ocaml-uri-sexp., Xinglu Chen, 2021/06/25
- [bug#49203] [PATCH 1/2] gnu: Add ocaml-uri-sexp., Julien Lepiller, 2021/06/25
- [bug#49203] [PATCH 1/2] gnu: Add ocaml-uri-sexp., Xinglu Chen, 2021/06/25
[bug#49203] [PATCH 2/2] gnu: Add ocaml-cohttp.,
Xinglu Chen <=
[bug#49203] [PATCH v2 0/2] Add ocaml-cohttp and dependencies, Xinglu Chen, 2021/06/25