gnu: Add ocaml-async-rpc-kernel.

* gnu/packages/ocaml.scm (ocaml-async-rpc-kernel): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
raingloom 2023-02-15 23:00:19 +01:00 committed by Christopher Baines
parent 7fbe38d7bf
commit 3e15ad0329
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -8465,6 +8465,31 @@ (define-public ocaml-async-unix
system calls run in.") system calls run in.")
(license license:expat))) (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 (define-public ocaml-textutils-kernel
(package (package
(name "ocaml-textutils-kernel") (name "ocaml-textutils-kernel")