From 3a9c762104d8b37b4e2bb2045b118f3a127f5a95 Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 31 Aug 2022 14:07:55 -0500 Subject: gnu: Add emacs-project-x. * gnu/packages/emacs-xyz.scm (emacs-project-x): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6fc566263f..6a408a056e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -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.") (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 (package (name "emacs-vertico-posframe") -- cgit v1.2.3