rekahsoft-gnu/packages/emacs-xyz.scm: Add emacs-helm-rg

This commit is contained in:
Collin J. Doering 2020-12-29 09:05:15 -05:00
parent fc900a64bc
commit 534b1dde32
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 25 additions and 0 deletions

View File

@ -601,3 +601,28 @@ call (require 'persp-projectile)
See perspective.el on github: https://github.com/nex3/perspective-el
")
(license license:gpl3+)))
(define-public emacs-helm-rg
(package
(name "emacs-helm-rg")
(version "0.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cosmicexplorer/helm-rg")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1k9yv9iw694alf5w7555ygk2i1b26i90rqq7ny63a4nd3y5cbs5f"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-dash" ,emacs-dash)
("emacs-helm" ,emacs-helm)))
(home-page
"https://github.com/cosmicexplorer/helm-rg")
(synopsis "A helm interface to ripgrep")
(description
"Helm interface for ripgrep.")
(license license:gpl3+)))