mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: Add emacs-package-build.
* gnu/packages/emacs-xyz.scm (emacs-package-build): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
9f1d2085df
commit
d640ae44e8
1 changed files with 20 additions and 0 deletions
|
@ -532,6 +532,26 @@ (define-public emacs-hg-histedit
|
||||||
@command{hg histedit} for editing the commit history.")
|
@command{hg histedit} for editing the commit history.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-package-build
|
||||||
|
(package
|
||||||
|
(name "emacs-package-build")
|
||||||
|
(version "2.3")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/melpa/package-build")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1412pjghyvzkdlsrrs0ql30vw591bhyk1wlbf49f15dzjbspx3w0"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/melpa/package-build")
|
||||||
|
(synopsis "Tools for assembling en Emacs package archive")
|
||||||
|
(description "This package provides tools for assembling an @acronym{ELPA,
|
||||||
|
Emacs package archive}.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-paredit
|
(define-public emacs-paredit
|
||||||
(package
|
(package
|
||||||
(name "emacs-paredit")
|
(name "emacs-paredit")
|
||||||
|
|
Loading…
Reference in a new issue