diml/utop@5d72a0ab34 -> diml/utop@bbd9a6ed45 flycheck/flycheck-ocaml@8707a7bf54 -> flycheck/flycheck-ocaml@77f8ddbd9b ocaml-ppx/ocamlformat@9324ea439a -> ocaml-ppx/ocamlformat@9cbd8150c2 ocaml/dune@4bc7629a5e -> ocaml/dune@3df932f7f9 ocaml/merlin@5d59c70659 -> ocaml/merlin@be753d9412 ocaml/tuareg@04f5ab6be9 -> ocaml/tuareg@ad8a688b7e Fix: ocaml-ppx/ocamlformat#2120 Close: #6639 Co-authored-by: tjammer <tjammer@users.noreply.github.com>
25 lines
998 B
EmacsLisp
25 lines
998 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/ocaml/packages.el
|
|
|
|
(package! tuareg :pin "ad8a688b7e2aeeafc320a845f86cdd9aa7c971ce")
|
|
|
|
(unless (featurep! +lsp)
|
|
(package! merlin :pin "be753d9412387aedcf32aba88a1be9bcd33d97ba")
|
|
(package! merlin-eldoc :pin "db7fab1eddfe34781b7e79694f8923b285698032")
|
|
(package! merlin-company :pin "be753d9412387aedcf32aba88a1be9bcd33d97ba")
|
|
(when (featurep! :checkers syntax)
|
|
(package! flycheck-ocaml :pin "77f8ddbd9bfc3a11957ac7ec7e45d5fa9179b192")))
|
|
|
|
(package! ocp-indent :pin "7c4d434132cebc15a8213c8be9e7323692eb0a2b")
|
|
|
|
(when (featurep! :tools eval)
|
|
(package! utop :pin "bbd9a6ed45c8de8d50adcd5d4d845bdba212db63"))
|
|
|
|
(when (featurep! :editor format)
|
|
(package! ocamlformat
|
|
:recipe (:host github :repo "ocaml-ppx/ocamlformat" :files ("emacs/*.el"))
|
|
:pin "9cbd8150c28f70ba6315c347a833a4ac8c85c481"))
|
|
|
|
(package! dune
|
|
:recipe (:host github :repo "ocaml/dune" :files ("editor-integration/emacs/*.el"))
|
|
:pin "3df932f7f91ea68c3fee789f133b4aa8f9bea807")
|