diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2017-10-14 13:29:14 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-10-20 14:41:41 +0200 |
commit | 6df274073a15f33fcced306c068af9e84b96b8b9 (patch) | |
tree | 4ef8646240cb7e91e96f6247471d71f7bd2090af /gnu/packages/emacs.scm | |
parent | 49d3d1d9379267f9b1e1f66a5b0bcbd144cb6fd1 (diff) | |
download | guix-6df274073a15f33fcced306c068af9e84b96b8b9.tar guix-6df274073a15f33fcced306c068af9e84b96b8b9.tar.gz |
gnu: Add emacs-json-snatcher.
* gnu/packages/emacs.scm (emacs-json-snatcher): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 6d9ea41935..bc803892af 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -5667,6 +5667,26 @@ pair of minor modes which suppress all mouse events by intercepting them and running a customisable handler command (@code{ignore} by default). ") (license license:gpl3+))) +(define-public emacs-json-snatcher + (package + (name "emacs-json-snatcher") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/Sterlingg/json-snatcher/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1nfiwsifpdiz0lbrqa77nl0crnfrv5h85ans9b0g5rggnmyshcfb")))) + (build-system emacs-build-system) + (home-page "https://github.com/sterlingg/json-snatcher") + (synopsis "Grabs the path to JSON values in a JSON file") + (description "@code{emacs-json-snatcher} grabs the path to JSON values in +a @url{http://json.org/, JSON} file.") + (license license:gpl3+))) + (define-public emacs-restclient (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40") (revision "1")) ;Guix package revision, |