mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add emacs-counsel-jq.
* gnu/packages/emacs-xyz.scm (emacs-counsel-jq): New variable. Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
parent
c8ea8516d0
commit
f15cc2f4a2
1 changed files with 27 additions and 0 deletions
|
@ -7783,6 +7783,33 @@ (define-public emacs-epl
|
|||
@code{package.el} into a sane API.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-counsel-jq
|
||||
(let ((release "1.0.0")
|
||||
(revision "0")
|
||||
(commit "aaf33fc2447096cd0d03b77395fe2a95c9fe1481"))
|
||||
(package
|
||||
(name "emacs-counsel-jq")
|
||||
(version (git-version release revision commit))
|
||||
(home-page "https://github.com/200ok-ch/counsel-jq")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "10rz0qm8a4bl0m86kx19zq8lri047p4sxqyny08bgm9pbam0wvwn"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-swiper" ,emacs-swiper)
|
||||
("jq" ,jq)))
|
||||
(synopsis "Live preview @code{jq} queries using counsel")
|
||||
(description
|
||||
"This Emacs package provides the ability to live preview @code{jq}
|
||||
queries using counsel.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-counsel-notmuch
|
||||
;; Upstream provides no release. Extract version for main file.
|
||||
(let ((commit "a4a1562935e4180c42524c51609d1283e9be0688")
|
||||
|
|
Loading…
Reference in a new issue