me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-grep-context.

* gnu/packages/emacs.scm (emacs-grep-context): New public variable.
master
Oleg Pykhalov 2018-05-02 19:11:11 +03:00
parent f52b635b49
commit 8f052df26c
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 26 additions and 0 deletions

View File

@ -9786,3 +9786,29 @@ perform regression test for packages that provide font-lock rules.")
@item Thorough font-lock and indent.
@end itemize\n")
(license license:gpl3+))))
(define-public emacs-grep-context
(let ((commit "a17c57e66687a54e195e08afe776bdd60cb6c0a7"))
(package
(name "emacs-grep-context")
(version (git-version "0.1" "1" commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mkcms/grep-context.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1nqfa6kjzjshww4hnwg1c0vcr90bdjihy3kmixq3c3jkvxg99b62"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-dash" ,emacs-dash)))
(home-page "https://github.com/nashamri/academic-phrases")
(synopsis "Increase context in compilation and grep buffers")
(description
"This package provides an Emacs package for more context in
compilation/grep buffers. Works with @code{wgrep}, @code{ack}, @code{ag},
@code{ivy}.")
(license license:gpl3+))))