[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#60673] [PATCH v2 30/39] gnu: Add ocaml-async-rpc-kernel.
From: |
Csepp |
Subject: |
[bug#60673] [PATCH v2 30/39] gnu: Add ocaml-async-rpc-kernel. |
Date: |
Wed, 15 Feb 2023 23:00:19 +0100 |
From: raingloom <raingloom@riseup.net>
* gnu/packages/ocaml.scm (ocaml-async-rpc-kernel): New variable.
---
gnu/packages/ocaml.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 86c22f500c..cda38dc381 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -8467,6 +8467,31 @@ (define-public ocaml-async-unix
system calls run in.")
(license license:expat)))
+(define-public ocaml-async-rpc-kernel
+ (package
+ (name "ocaml-async-rpc-kernel")
+ (version "0.15.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/janestreet/async_rpc_kernel")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1b5rp5yam03ir4f1sixpzjg1zdqmkb7lvnaa82kac4fzk80gfrfr"))))
+ (build-system dune-build-system)
+ (propagated-inputs (list ocaml-async-kernel ocaml-core ocaml-ppx-jane
+ ocaml-protocol-version-header))
+ (properties `((upstream-name . "async_rpc_kernel")))
+ (home-page "https://github.com/janestreet/async_rpc_kernel")
+ (synopsis "Platform-independent core of Async RPC library")
+ (description
+ "Library for building RPC-style protocols. This library is the portable
+part of the Unix-oriented Async_rpc library, and is actively used in
+JavaScript.")
+ (license license:expat)))
+
(define-public ocaml-textutils-kernel
(package
(name "ocaml-textutils-kernel")
--
2.39.1
- [bug#60673] [PATCH v2 25/39] gnu: Add ocaml-async-kernel., (continued)
- [bug#60673] [PATCH v2 25/39] gnu: Add ocaml-async-kernel., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 27/39] gnu: Add ocaml-textutils-kernel., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 10/39] gnu: Add ocaml-mirage., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 28/39] gnu: Add ocaml-textutils., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 29/39] gnu: Add ocaml-protocol-version-header., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 39/39] gnu: Add ocaml-mirage-bootvar-unix., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 34/39] gnu: Add ocaml-xenstore., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 36/39] gnu: Add ocaml-bheap., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 22/39] gnu: Add ocaml-expect-test-helpers-core., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 24/39] gnu: Add ocaml-core-unix., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 30/39] gnu: Add ocaml-async-rpc-kernel.,
Csepp <=
- [bug#60673] [PATCH v2 38/39] gnu: Add ocaml-parse-argv., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 37/39] gnu: Add ocaml-mirage-xen., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 18/39] gnu: Add ocaml-mirage-clock., Csepp, 2023/02/15
- [bug#60673] [PATCH v2 21/39] gnu: Add ocaml-sexp-pretty., Csepp, 2023/02/15