diff options
author | Benjamin <benjamin@uvy.fr> | 2024-03-24 00:35:16 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-12-23 11:48:04 +0100 |
commit | 4075cda947fab82ca573193c08d693ac045aabe1 (patch) | |
tree | 72c2785e75cf0f8e336c2b2eddb272358520a628 | |
parent | 5051fedad8ff61dc36f984da25d15ae4e70a38a7 (diff) | |
download | guix-4075cda947fab82ca573193c08d693ac045aabe1.tar.gz guix-4075cda947fab82ca573193c08d693ac045aabe1.zip |
gnu: Add ocamlc-loc.
* gnu/packages/ocaml.scm (ocamlc-loc): New variable.
Change-Id: I0bcc2666d8030f067b964647400ff31e9302d1c7
Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
-rw-r--r-- | gnu/packages/ocaml.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 45a5284c93..cf1af954b8 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -8766,6 +8766,22 @@ get an precise reference of when the executable was built."))) (synopsis "Communicate with ocaml dune using rpc") (description "Library to connect and control a running dune instance."))) +(define-public ocamlc-loc + (package + (inherit dune-ordering) + (name "ocamlc-loc") + (build-system dune-build-system) + (arguments + '(#:package "ocamlc-loc" + ;; Tests have a cyclic dependency on stdune + #:tests? #f)) + (propagated-inputs (list dune-dyn ocaml-odoc)) + (synopsis "Parse ocaml compiler output into structured form") + (description + "This library parses ocaml complier output and returns it as ocaml values. +This library offers no backwards compatibility guarantees."))) + + (define-public ocaml-either (package (name "ocaml-either") |