lilyp pushed a commit to branch master
in repository guix.

commit 3bd9ac84e49968ef9fa4496e61a56fe6cb52b30d
Author: Daniel Szmulewicz <[email protected]>
AuthorDate: Sun Jul 14 18:10:42 2024 +0300

    gnu: Add emacs-consult-projectile.
    
    * gnu/packages/emacs-xyz.scm (emacs-consult-projectile): New variable.
    
    Change-Id: Id7de103e052b0900069757fe56ddc1b10a875660
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 348d361221..a31671a722 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -39934,6 +39934,32 @@ workspace diagnostics, symbols, and file symbols from 
@{emacs-lsp-mode}
 by leveraging @code{emacs-consult} APIs.")
     (license license:expat)))
 
+(define-public emacs-consult-projectile
+  (let ((commit "400439c56d17bca7888f7d143d8a11f84900a406")
+        (revision "1"))
+    (package
+      (name "emacs-consult-projectile")
+      (version (git-version "0.7" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://gitlab.com/OlMon/consult-projectile";)
+               (commit "400439c56d17bca7888f7d143d8a11f84900a406")))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1abd2dw3zpiln9pd7l3j78wl3lwapcmf1ilijv3vin9g0wqb7hmn"))))
+      (build-system emacs-build-system)
+      (propagated-inputs (list emacs-consult emacs-projectile))
+      (home-page "https://gitlab.com/OlMon/consult-projectile";)
+      (synopsis "Consult integration for projectile")
+      (description
+       "This package provides a multiview for displaying open buffers, files 
and
+directories accociated with a project.  When no project is open in the current
+buffer display a list of known project and select a file from the selected
+project.  Additionally seperate single source function are available.")
+      (license license:gpl3+))))
+
 (define-public emacs-context-transient
   (package
     (name "emacs-context-transient")

Reply via email to