gnu: Add emacs-ibuffer-projectile.
authorOleg Pykhalov <go.wigust@gmail.com>
Wed, 2 May 2018 16:03:04 +0000 (19:03 +0300)
committerOleg Pykhalov <go.wigust@gmail.com>
Wed, 2 May 2018 17:17:12 +0000 (20:17 +0300)
* gnu/packages/emacs.scm (emacs-ibuffer-projectile): New public variable.

gnu/packages/emacs.scm

index b0331d9..bae0184 100644 (file)
@@ -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+))))