2019-08-29 20:07:41 +07:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/agda/packages.el
|
|
|
|
|
2019-12-17 14:25:05 -05:00
|
|
|
(unless (featurep! +local)
|
|
|
|
(package! agda-input
|
|
|
|
:recipe (:host github :repo "agda/agda"
|
|
|
|
:files ("src/data/emacs-mode/agda-input.el")
|
|
|
|
:nonrecursive t))
|
2019-08-29 20:07:41 +07:00
|
|
|
|
2019-12-17 14:25:05 -05:00
|
|
|
(package! agda2-mode
|
|
|
|
:recipe (:host github :repo "agda/agda"
|
|
|
|
:files ("src/data/emacs-mode/*.el"
|
|
|
|
(:exclude "agda-input.el"))
|
|
|
|
:nonrecursive t)))
|