all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#33886] [PATCH] gnu: Add ocaml-merlin.
@ 2018-12-27  9:54 Gabriel Hondet
  2019-01-13 22:30 ` bug#33886: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Gabriel Hondet @ 2018-12-27  9:54 UTC (permalink / raw)
  To: 33886

[-- Attachment #1: Type: text/plain, Size: 1770 bytes --]


* gnu/packages/ocaml.scm (ocaml-merlin): New variable.
---
 gnu/packages/ocaml.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 6a16f0729..5b36456fb 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -5124,3 +5124,34 @@ speedup, polymorphic variants and optional syntax for tuples and variants.
 yojson package.  The program @code{atdgen} can be used to derive OCaml-JSON
 serializers and deserializers from type definitions.")
     (license license:bsd-3)))
+
+(define-public ocaml-merlin
+  (package
+    (name "ocaml-merlin")
+    (version "3.2.2")
+    (home-page "https://ocaml.github.io/merlin/")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ocaml/merlin.git")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "15ssgmwdxylbwhld9p1cq8x6kadxyhll5bfyf11dddj6cldna3hb"))))
+    (build-system dune-build-system)
+    (inputs
+     `(("ocaml-biniou" ,ocaml-biniou)
+       ("ocaml-yojson" ,ocaml-yojson)
+       ("ocaml-easy-format" ,ocaml-easy-format)))
+    (native-inputs
+     `(("ocaml-findlib" ,ocaml-findlib)))
+    (arguments
+     '(#:tests? #f)) ;; Errors in tests in version 3.2.2
+    (synopsis "Context sensitive completion for OCaml in Vim and Emacs")
+    (description "Merlin is an editor service that provides modern IDE
+features for OCaml.  Emacs and Vim support is provided out-of-the-box.
+External contributors added support for Visual Studio Code, Sublime Text and
+Atom.")
+    (license license:expat)))
-- 
2.20.1

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#33886: [PATCH] gnu: Add ocaml-merlin.
  2018-12-27  9:54 [bug#33886] [PATCH] gnu: Add ocaml-merlin Gabriel Hondet
@ 2019-01-13 22:30 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2019-01-13 22:30 UTC (permalink / raw)
  To: Gabriel Hondet; +Cc: 33886-done

Gabriel Hondet <gabrielhondet@gmail.com> skribis:

> * gnu/packages/ocaml.scm (ocaml-merlin): New variable.

Looks like this one had fallen through the cracks…  Applied!

> +    (arguments
> +     '(#:tests? #f)) ;; Errors in tests in version 3.2.2

It would be nice to figure out what’s wrong.

Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-01-13 22:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-27  9:54 [bug#33886] [PATCH] gnu: Add ocaml-merlin Gabriel Hondet
2019-01-13 22:30 ` bug#33886: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.