mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add emacs-nameless.
* gnu/packages/emacs-xyz.scm (emacs-nameless): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
4091b6c4c2
commit
743c0270f6
1 changed files with 21 additions and 0 deletions
|
@ -4920,6 +4920,27 @@ (define-public emacs-names
|
|||
"This package provides a macro that writes your namespaces for you.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-nameless
|
||||
(package
|
||||
(name "emacs-nameless")
|
||||
(version "1.0.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Malabarba/Nameless")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "107q1rximjnag9r9vgwh0iv687i3rsscbdnjc46f8l16j6vi4n7d"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/Malabarba/nameless")
|
||||
(synopsis "Hide package namespace in your Emacs-lisp code")
|
||||
(description
|
||||
"This package provides a @code{nameless-mode} minor mode in which the
|
||||
package namespace prefix is hidden by a colon.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public emacs-evil-leader
|
||||
(package
|
||||
(name "emacs-evil-leader")
|
||||
|
|
Loading…
Reference in a new issue