gnu: Add emacs-discover-my-major.

* gnu/packages/emacs.scm (emacs-discover-my-major): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:03:51 +03:00
parent c1b9d72ca1
commit 2c63f72486
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 23 additions and 0 deletions

View File

@ -9097,3 +9097,26 @@ CSS, JavaScript, JSON.")
(description "This package provides an Emacs Helm interface to search
throw a shell history.")
(license license:gpl3+))))
(define-public emacs-discover-my-major
(package
(name "emacs-discover-my-major")
(version "1.0")
(source
(origin
(method url-fetch)
(uri
(string-append "https://github.com/steckerhalter/discover-my-major"
"/archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-makey" ,emacs-makey)))
(home-page "https://github.com/steckerhalter/discover-my-major")
(synopsis "Discover key bindings for the current Emacs major mode")
(description "This package provides allows to discover key bindings and
their meaning for the current Emacs major-mode.")
(license license:gpl3+)))