me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-idris-mode.

* gnu/packages/emacs.scm (emacs-idris-mode): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Peter Mikkelsen 2017-08-24 13:52:21 +02:00 committed by Ludovic Courtès
parent b9dcaced16
commit 5883bb76f8
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 25 additions and 0 deletions

View File

@ -5398,3 +5398,28 @@ bind @code{prop-menu-by-completing-read} to an appropriate
key. Optionally, a mouse pop-up can be added by binding
@code{prop-menu-show-menu} to a mouse event.")
(license license:gpl3+)))
(define-public emacs-idris-mode
(package
(name "emacs-idris-mode")
(version "0.9.19")
(source
(origin
(method url-fetch)
(uri (string-append
"http://stable.melpa.org/packages/idris-mode-"
version ".tar"))
(sha256
(base32
"0ld4kfwnyyhlsnj5f6cbn4is4mpxdqalk2aifkw02r00mbr9n294"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-prop-menu" ,emacs-prop-menu)))
(home-page
"https://github.com/idris-hackers/idris-mode")
(synopsis "Major mode for editing Idris code")
(description
"This is an Emacs mode for editing Idris code. It requires the latest
version of Idris, and some features may rely on the latest Git version of
Idris.")
(license license:gpl3+)))