gnu: Add emacs-ibuffer-projectile.

* gnu/packages/emacs.scm (emacs-ibuffer-projectile): New public variable.
master
Oleg Pykhalov 2018-05-02 19:03:04 +03:00
parent 666e561723
commit 60bf926534
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 26 additions and 0 deletions

View 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+))))