emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#33886: closed ([PATCH] gnu: Add ocaml-merlin.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#33886: closed ([PATCH] gnu: Add ocaml-merlin.)
Date: Sun, 13 Jan 2019 22:31:01 +0000

Your message dated Sun, 13 Jan 2019 23:30:00 +0100
with message-id <address@hidden>
and subject line Re: [bug#33886] [PATCH] gnu: Add ocaml-merlin.
has caused the debbugs.gnu.org bug report #33886,
regarding [PATCH] gnu: Add ocaml-merlin.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
33886: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=33886
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add ocaml-merlin. Date: Thu, 27 Dec 2018 10:54:34 +0100 User-agent: mu4e 1.0; emacs 26.1
* 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: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message --- Subject: Re: [bug#33886] [PATCH] gnu: Add ocaml-merlin. Date: Sun, 13 Jan 2019 23:30:00 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)
Gabriel Hondet <address@hidden> 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’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]