diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-12-16 18:25:46 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-12-16 18:26:47 +0100 |
commit | 2eb3b91b5521689e15c90ecce614e096a8067ba4 (patch) | |
tree | 1e841626e95da6d2fd800707745615d4f32a6ad3 /gnu | |
parent | c81a21ac2a9a1c857a7a52d623f54f7928c0714d (diff) | |
download | guix-2eb3b91b5521689e15c90ecce614e096a8067ba4.tar.gz |
gnu: Add emacs-project.
* gnu/packages/emacs-xyz.scm (emacs-project): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e28f798ecb..83f2bd6a6f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -342,6 +342,26 @@ for those who may want transient periods of unbalanced parentheses, such as 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") |