mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add dune-rpc.
* gnu/packages/ocaml.scm (dune-rpc): New variable. Change-Id: Ic6488d3517d9bb4dc5a2e55d93be3ceee2103a3e Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
This commit is contained in:
parent
9dade47155
commit
5051fedad8
1 changed files with 19 additions and 0 deletions
|
@ -8747,6 +8747,25 @@ (define-public ocaml-xdg
|
|||
"This ocaml library returns user XDG directories such as XDG_CONFIG_HOME,
|
||||
XDG_STATE_HOME.")))
|
||||
|
||||
(define-public dune-rpc
|
||||
(package
|
||||
(inherit dune-ordering)
|
||||
(name "dune-rpc")
|
||||
(build-system dune-build-system)
|
||||
(arguments
|
||||
'(#:package "dune-rpc"
|
||||
;; Tests have a cyclic dependency on stdune
|
||||
#:tests? #f))
|
||||
(propagated-inputs (list ocaml-csexp
|
||||
dune-ordering
|
||||
dune-dyn
|
||||
ocaml-xdg
|
||||
dune-stdune
|
||||
ocaml-pp
|
||||
ocaml-odoc))
|
||||
(synopsis "Communicate with ocaml dune using rpc")
|
||||
(description "Library to connect and control a running dune instance.")))
|
||||
|
||||
(define-public ocaml-either
|
||||
(package
|
||||
(name "ocaml-either")
|
||||
|
|
Loading…
Reference in a new issue