me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-makey.

* gnu/packages/emacs.scm (emacs-makey): New public variable.
master
Oleg Pykhalov 2018-05-02 18:50:00 +03:00
parent 59dc661fc6
commit 63e6c4ad99
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 20 additions and 0 deletions

View File

@ -8091,3 +8091,23 @@ the source file.")
(description "@url{https://www.reddit.com} backend for the Gnus
newsreader.")
(license license:gpl3+))))
(define-public emacs-makey
(package
(name "emacs-makey")
(version "0.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/mickeynp/makey/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0kzl4q1wf2zhkx9nrymxa67n99iq0bj7zqhpaz4byksna1hsxfmv"))))
(build-system emacs-build-system)
(home-page "https://github.com/mickeynp/makey")
(synopsis "Emacs interactive command-line mode")
(description
"This package provides an Emacs interactive command-line mode.")
(license license:gpl3+)))