me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-parent-mode.

* gnu/packages/emacs.scm (emacs-parent-mode): New public variable.
master
Oleg Pykhalov 2018-05-02 19:01:14 +03:00
parent 9968e444c5
commit 02999382a2
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 19 additions and 0 deletions

View File

@ -8854,3 +8854,22 @@ useful for debugging macros that expand into another macro form. These can be
difficult to debug with Emacs built-in macroexpand, which continues expansion
until the top-level form is no longer a macro call.")
(license license:gpl3+))))
(define-public emacs-parent-mode
(package
(name "emacs-parent-mode")
(version "2.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Fanael/parent-mode/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0gxbl5s1w96v6v55b7aaansgw4sxhzfx9nrsvpk3pfhsibs6yqjd"))))
(build-system emacs-build-system)
(home-page "https://github.com/Fanael/parent-mode")
(synopsis "Get major mode's parent modes")
(description "Get major mode's parent modes")
(license license:gpl3+)))