gnu: Add emacs-names.

* gnu/packages/emacs-xyz.scm (emacs-names): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Brian Leung 2019-04-19 20:58:21 +02:00 committed by Ludovic Courtès
parent 5e319c15c1
commit a08530df08
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 24 additions and 0 deletions

View File

@ -2719,6 +2719,30 @@ the speedbar window.")
"This package provides commands to quickly switch between shell buffers.")
(license license:gpl3+)))
(define-public emacs-names
(let ((commit "d8baba5360e5253938a25d3e005455b6d2d86971")
(version "20151201.0")
(revision "8"))
(package
(name "emacs-names")
(version (git-version version revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Malabarba/names")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"11wyha2q8y7bzqq3jrzix8n97ywvsibvddrahqcps1a1yqk4hzfz"))))
(build-system emacs-build-system)
(home-page "https://github.com/Malabarba/names/")
(synopsis "Namespace implementation for Emacs Lisp")
(description
"This package provides a macro that writes your namespaces for you.")
(license license:gpl3+))))
(define-public emacs-ob-ipython
(package
(name "emacs-ob-ipython")