me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-project-x.

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

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
jgart 2022-08-31 14:07:55 -05:00 committed by Nicolas Goaziou
parent 8fdd5461e9
commit 3a9c762104
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 27 additions and 0 deletions

View File

@ -32441,6 +32441,33 @@ tree to go back to previous buffer states. To use vundo, type @kbd{M-x vundo RE
the buffer you want to undo. An undo tree buffer should pop up.") the buffer you want to undo. An undo tree buffer should pop up.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-project-x
;; There is no proper release.
;; The base version is extracted from the README.org.
(let ((revision "0")
(commit "0b78f4e33b994612fcb305b3cf6d3b1e3b62cea7"))
(package
(name "emacs-project-x")
(version (git-version "0.1.6" revision commit))
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/karthink/project-x")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1xxzxxm0jila5s9sfay6ywj2j8pyz4wwcrycvnrrzh0vxcsgzf9s"))))
(build-system emacs-build-system)
(home-page "https://github.com/karthink/project-x")
(synopsis "Enhancement to Emacs built-in Project library")
(description
"Project-X provides convenience features for Emacs' Project library.
In particular, it saves and restores project files and window configurations
across sessions.")
(license license:gpl3+))))
(define-public emacs-vertico-posframe (define-public emacs-vertico-posframe
(package (package
(name "emacs-vertico-posframe") (name "emacs-vertico-posframe")