2017-06-27 11:39:15 -07:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/ocaml/packages.el
|
|
|
|
|
|
|
|
(package! tuareg)
|
2018-09-21 00:06:12 +01:00
|
|
|
|
2019-10-23 14:38:13 +09:00
|
|
|
(unless (featurep! +lsp)
|
|
|
|
(package! merlin)
|
|
|
|
(package! merlin-eldoc)
|
2020-01-14 03:04:26 -05:00
|
|
|
(when (featurep! :checkers syntax)
|
2019-10-23 14:38:13 +09:00
|
|
|
(package! flycheck-ocaml)))
|
|
|
|
|
|
|
|
(package! ocp-indent)
|
2018-09-21 00:06:12 +01:00
|
|
|
|
2019-04-21 19:59:44 -04:00
|
|
|
(when (featurep! :tools eval)
|
2018-10-16 02:45:12 -04:00
|
|
|
(package! utop))
|
|
|
|
|
|
|
|
(when (featurep! :editor format)
|
|
|
|
;; by default quelpa generated a version 0pre0.20180929.192844, which got
|
|
|
|
;; parsed into (0 -1 0 ...), which when compared with version nil (0) in
|
|
|
|
;; package-installed-p always yielded false
|
2019-07-21 15:39:45 +02:00
|
|
|
(package! ocamlformat :recipe
|
|
|
|
(:host github :repo "ocaml-ppx/ocamlformat" :files ("emacs/*.el"))))
|
2018-10-16 02:45:12 -04:00
|
|
|
|
2019-07-21 15:39:45 +02:00
|
|
|
(package! dune :recipe
|
|
|
|
(:host github :repo "ocaml/dune" :files ("editor-integration/emacs/*.el")))
|