mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add emacs-project.
* gnu/packages/emacs-xyz.scm (emacs-project): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
c81a21ac2a
commit
2eb3b91b55
1 changed files with 20 additions and 0 deletions
|
@ -342,6 +342,26 @@ (define-public emacs-paredit
|
|||
when typing parentheses directly or commenting out code line by line.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-project
|
||||
(package
|
||||
(name "emacs-project")
|
||||
(version "0.5.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://elpa.gnu.org/packages/"
|
||||
"project-" version ".el"))
|
||||
(sha256
|
||||
(base32 "181hls4phhj8kgpfcky6h0mgzpl9xj616abvcvx8mrn4nmpyh655"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs `(("emacs-xref" ,emacs-xref)))
|
||||
(home-page "http://elpa.gnu.org/packages/project.html")
|
||||
(synopsis "Operations on the current project")
|
||||
(description
|
||||
"This library contains generic infrastructure for dealing with projects,
|
||||
some utility functions, and commands using that infrastructure.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public git-modes
|
||||
(package
|
||||
(name "emacs-git-modes")
|
||||
|
|
Loading…
Reference in a new issue