diff options
author | Joseph LaFreniere <joseph@lafreniere.xyz> | 2020-12-07 00:58:29 -0600 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2020-12-07 10:52:47 +0300 |
commit | f15cc2f4a2a1cdd0e4c9f9b4bec80c7ae84634cc (patch) | |
tree | aaf44d626082c06e33e1ea8267f1a3ae324cde30 /gnu/packages/emacs-xyz.scm | |
parent | c8ea8516d08d3defd694cd3991595e8a2747899a (diff) | |
download | guix-f15cc2f4a2a1cdd0e4c9f9b4bec80c7ae84634cc.tar.gz |
gnu: Add emacs-counsel-jq.
* gnu/packages/emacs-xyz.scm (emacs-counsel-jq): New variable. Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 8a03b2d7a3..de0b8e6103 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -7783,6 +7783,33 @@ The purpose of this library is to wrap all the quirks and hassle of @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") |