guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

38/88: gnu: Add emacs-ibuffer-projectile.


From: Oleg Pykhalov
Subject: 38/88: gnu: Add emacs-ibuffer-projectile.
Date: Wed, 2 May 2018 13:21:11 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 60bf926534e813d631f02e0c02ef81052eeeba0d
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:03:04 2018 +0300

    gnu: Add emacs-ibuffer-projectile.
    
    * gnu/packages/emacs.scm (emacs-ibuffer-projectile): New public variable.
---
 gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index b0331d9..bae0184 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8965,3 +8965,29 @@ key again.")
       (description "This package allows to call the @code{mbsync} from
 within Emacs.")
       (license license:gpl3+))))
+
+(define-public emacs-ibuffer-projectile
+  (let ((commit "c18ac540ee46cb759fc5df18747f6e8d23563011")
+        (revision "1"))
+    (package
+      (name "emacs-ibuffer-projectile")
+      (version (string-append "0.2" "-" revision "."
+                              (string-take commit 7)))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/purcell/ibuffer-projectile.git";)
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32
+           "1nd26cwwdpnwj0g4w393rd59klpyr6wqrnyr6scmwb5d06bsm44n"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-projectile" ,emacs-projectile)))
+      (home-page "https://github.com/purcell/ibuffer-projectile";)
+      (synopsis "Group ibuffer's list by projectile root")
+      (description "Adds functionality to Emacs @code{ibuffer} for
+grouping buffers by their projectile root directory.")
+      (license license:gpl3+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]