mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
28 lines
1.3 KiB
EmacsLisp
28 lines
1.3 KiB
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/clojure/packages.el
|
|
|
|
;; HACK Fix #5577. Paredit is a cider dependency. We install paredit ourselves
|
|
;; to get it from emacsmirror, because the original upstream is a custom
|
|
;; git server with shallow clones disabled.
|
|
(package! paredit
|
|
:recipe (:host github :repo "emacsmirror/paredit")
|
|
:pin "af075775af91f2dbc63b915d762b4aec092946c4")
|
|
|
|
;; HACK Forward declare these clj-refactor/cider deps so that their deps are
|
|
;; byte-compiled first.
|
|
(package! parseclj :pin "6af22372e0fe14df882dd300b22b12ba2d7e00b0")
|
|
(package! parseedn :pin "3407e4530a367b6c2b857dae261cdbb67a440aaa")
|
|
|
|
;;; Core packages
|
|
(package! clojure-mode :pin "b766094aea28bdc7b44ce1960d96434fe7d1d9cf")
|
|
(when (modulep! +tree-sitter)
|
|
(package! clojure-ts-mode :pin "da56a6938f525c8ead1fb3d79eced4d892df1661"))
|
|
(package! clj-refactor :pin "dc1bbc8cdaa723bdbb6669ea7d280625c370755d")
|
|
(package! cider :pin "12f10a6f4b3052a9b437f92cf97d551a5964f4cb")
|
|
(when (modulep! :checkers syntax -flymake)
|
|
(package! flycheck-clj-kondo :pin "e38c67ba9db1ea1cbe1b61ab39b506c05efdcdbf"))
|
|
(package! jet :pin "c9a92675efd802f37df5e3eab7858dbbeced6ea4")
|
|
(package! neil
|
|
:recipe (:host github :repo "babashka/neil" :files ("*.el"))
|
|
:pin "0b7373dd1b5a0dc7f8aff83b8e65d75d7d5e23bc")
|