mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-08 15:23:35 -05:00
BREAKING CHANGE: ghcide was archived a while back and now primarily exists as a library used in the development of haskell-language-server. It is not recommended for end-users, only for development. To this end I think including it in the module is more misleading than helpful, and the people that really want to use it can easily set it up themselves. Ref: https://github.com/haskell/ghcide/pull/939
12 lines
445 B
EmacsLisp
12 lines
445 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/haskell/packages.el
|
|
|
|
(package! haskell-mode :pin "98ba3922360199d5260d47f417f096730ad057c5")
|
|
|
|
(when (featurep! +dante)
|
|
(package! dante :pin "8741419333fb85ed2c1d71f5902688f5201b0a40")
|
|
(package! attrap :pin "a5bc695af27349ae6fe4541a581e6fd449d2a026"))
|
|
(when (and (featurep! +lsp)
|
|
(not (featurep! :tools lsp +eglot)))
|
|
(package! lsp-haskell :pin "4e62cf897dd9e9fcef25c6e8e483490a07a5d439"))
|