[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64209] [PATCH 02/14] gnu: Add ocaml-dune-rpc.
From: |
Benjamin |
Subject: |
[bug#64209] [PATCH 02/14] gnu: Add ocaml-dune-rpc. |
Date: |
Wed, 21 Jun 2023 17:48:16 +0200 |
* gnu/packages/ocaml.scm (ocaml-dune-rpc): New variable.
---
gnu/packages/ocaml.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 7aa87ca4df..18825f607a 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -9672,6 +9672,30 @@ (define-public ocaml-dune-build-info
reporting the version from the version control system during development to
get an precise reference of when the executable was built.")))
+(define-public ocaml-dune-rpc
+ (package
+ (inherit dune)
+ (name "ocaml-dune-rpc")
+ (build-system dune-build-system)
+ (arguments
+ '(#:package "dune-rpc"
+ #:tests? #f
+ #:phases (modify-phases %standard-phases
+ (add-before 'build 'remove-vendor
+ (lambda _
+ (delete-file-recursively "vendor/csexp")
+ (delete-file-recursively "vendor/pp"))))))
+ (propagated-inputs (list ocaml-csexp
+ ocaml-ordering
+ ocaml-dyn
+ ocaml-xdg
+ ocaml-stdune
+ ocaml-pp
+ ocaml-odoc))
+ (properties '())
+ (synopsis "Communicate with dune using rpc")
+ (description "Library to connect and control a running dune instance")))
+
(define-public ocaml-either
(package
(name "ocaml-either")
--
2.40.1
- [bug#64209] [PATCH 00/14] Add ocaml-lsp-server and its dependencies, Benjamin, 2023/06/21
- [bug#64209] [PATCH 02/14] gnu: Add ocaml-dune-rpc.,
Benjamin <=
- [bug#64209] [PATCH 01/14] gnu: Fix ocaml-dune-build-info, Benjamin, 2023/06/21
- [bug#64209] [PATCH 03/14] gnu: Add ocaml-chrome-trace., Benjamin, 2023/06/21
- [bug#64209] [PATCH 05/14] gnu: Add ocaml-stdune., Benjamin, 2023/06/21
- [bug#64209] [PATCH 09/14] gnu: Add ocamlc-loc., Benjamin, 2023/06/21
- [bug#64209] [PATCH 04/14] gnu: Add ocaml-dyn., Benjamin, 2023/06/21
- [bug#64209] [PATCH 06/14] gnu: Add ocaml-fiber., Benjamin, 2023/06/21
- [bug#64209] [PATCH 07/14] gnu: Add ocaml-xdg., Benjamin, 2023/06/21
- [bug#64209] [PATCH 11/14] gnu: Add ocaml-pp., Benjamin, 2023/06/21
- [bug#64209] [PATCH 13/14] gnu: Add ocaml-merlin-lib-4.9., Benjamin, 2023/06/21
- [bug#64209] [PATCH 10/14] gnu: Add ocamlformat-rpc-lib., Benjamin, 2023/06/21