[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#49867] [PATCH v2 07/31] gnu: Add ocaml-conduit.
From: |
pukkamustard |
Subject: |
[bug#49867] [PATCH v2 07/31] gnu: Add ocaml-conduit. |
Date: |
Mon, 9 Aug 2021 07:01:00 +0000 |
* gnu/packages/ocaml.scm (ocaml-conduit): New variable.
---
gnu/packages/ocaml.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 880b4d7836..efd21d56e6 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -7453,6 +7453,38 @@ C-like structures using the @code{ocaml-cstruct}
library.")))
(description "This OCaml library provides functions for manipulating as
S-expressions using the @code{ocaml-sexp} library.")))
+(define-public ocaml-conduit
+ (package
+ (name "ocaml-conduit")
+ (version "4.0.0")
+ (home-page "https://github.com/mirage/ocaml-conduit")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0ipm6fkmvgsyfj5f5p057av8kykli5rh8qzw7ycdrakdk7gzvhi0"))))
+ (build-system dune-build-system)
+ (arguments `(#:package "conduit"
+ #:test-target "."))
+ (propagated-inputs
+ `(("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
+ ("ocaml-sexplib" ,ocaml-sexplib)
+ ("ocaml-astring" ,ocaml-astring)
+ ("ocaml-uri" ,ocaml-uri)
+ ("ocaml-logs" ,ocaml-logs)
+ ("ocaml-ipaddr" ,ocaml-ipaddr)
+ ("ocaml-ipaddr-sexp" ,ocaml-ipaddr-sexp)))
+ (synopsis "OCaml library for establishing TCP and SSL/TLS connections")
+ (description "This OCaml library provides an abstraction for establishing
+TCP and SSL/TLS connections. This allows using the same type signatures
+regardless of the SSL library or platform being used.")
+ (license license:isc)))
+
(define-public js-of-ocaml
(package
(name "js-of-ocaml")
--
2.32.0
- [bug#49867] [PATCH v2 01/31] gnu: Add ocaml-cohttp-lwt., (continued)
- [bug#49867] [PATCH v2 01/31] gnu: Add ocaml-cohttp-lwt., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 03/31] gnu: Add ocaml-macaddr., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 05/31] gnu: Add ocaml-ipaddr-cstruct., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 04/31] gnu: Add ocaml-ipaddr., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 02/31] gnu: Add ocaml-domain-name., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 06/31] gnu: Add ocaml-ipaddr-sexp., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 13/31] gnu: Add ocaml-mirage-crypto., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 13/31] gnu: Add ocaml-mirage-crypto., Julien Lepiller, 2021/08/21
- [bug#49867] [PATCH v2 13/31] gnu: Add ocaml-mirage-crypto., pukkamustard, 2021/08/23
- [bug#49867] [PATCH v2 13/31] gnu: Add ocaml-mirage-crypto., pukkamustard, 2021/08/23
- [bug#49867] [PATCH v2 07/31] gnu: Add ocaml-conduit.,
pukkamustard <=
- [bug#49867] [PATCH v2 08/31] gnu: Add ocaml-conduit-lwt., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 14/31] gnu: Add ocaml-duration., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 09/31] gnu: Add ocaml-afl-persistent., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 17/31] gnu: Add ocaml-mirage-crypto-pk., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 12/31] gnu: Add ocaml-eqaf., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 10/31] gnu: Add ocaml-pprint., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 18/31] gnu: Add ocaml-ptime., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 15/31] gnu: Add ocaml-randomconv., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 11/31] gnu: Add ocaml-crowbar., pukkamustard, 2021/08/09
- [bug#49867] [PATCH v2 11/31] gnu: Add ocaml-crowbar., Xinglu Chen, 2021/08/09