mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-23 11:30:23 +10:00
17 lines
482 B
EmacsLisp
17 lines
482 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/agda/packages.el
|
|
|
|
(unless (featurep! +local)
|
|
(package! agda-input
|
|
:recipe (:host github :repo "agda/agda"
|
|
:files ("src/data/emacs-mode/agda-input.el")
|
|
:nonrecursive t)
|
|
:pin "ff9173e14e")
|
|
|
|
(package! agda2-mode
|
|
:recipe (:host github :repo "agda/agda"
|
|
:files ("src/data/emacs-mode/*.el"
|
|
(:exclude "agda-input.el"))
|
|
:nonrecursive t)
|
|
:pin "ff9173e14e"))
|