summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2020-06-27 12:46:55 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2020-06-27 12:46:55 +0300
commitd8a046d560e8e149e903b7d3648c7218bf17c085 (patch)
tree72b6d9b386f567c983bc2d65562a55e9ee8485da /gnu
parentace3e549737e7bd935bebeb69b13087d8f0ccd6d (diff)
gnu: Add jc.
* gnu/packages/admin.scm (jc): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/admin.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 9212401c405..9d9fd2d95d1 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -124,6 +124,7 @@
124 #:use-module (gnu packages qt) 124 #:use-module (gnu packages qt)
125 #:use-module (gnu packages readline) 125 #:use-module (gnu packages readline)
126 #:use-module (gnu packages ruby) 126 #:use-module (gnu packages ruby)
127 #:use-module (gnu packages serialization)
127 #:use-module (gnu packages sphinx) 128 #:use-module (gnu packages sphinx)
128 #:use-module (gnu packages tcl) 129 #:use-module (gnu packages tcl)
129 #:use-module (gnu packages terminals) 130 #:use-module (gnu packages terminals)
@@ -3864,6 +3865,30 @@ supports. It can also mount encrypted LUKS volumes using the password
3864supplied by the user when logging in.") 3865supplied by the user when logging in.")
3865 (license (list license:gpl2+ license:lgpl2.1+)))) 3866 (license (list license:gpl2+ license:lgpl2.1+))))
3866 3867
3868(define-public jc
3869 (package
3870 (name "jc")
3871 (version "1.11.8")
3872 (source (origin
3873 (method git-fetch)
3874 (uri (git-reference
3875 (url "https://github.com/kellyjonbrazil/jc.git")
3876 (commit (string-append "v" version))))
3877 (file-name (git-file-name name version))
3878 (sha256
3879 (base32
3880 "0rkckbgm04ql4r48wjgljfiqvsz36n99yqcpcyna8lvlm8h4nmwa"))))
3881 (build-system python-build-system)
3882 (propagated-inputs
3883 `(("python-ruamel.yaml" ,python-ruamel.yaml)
3884 ("python-xmltodict" ,python-xmltodict)
3885 ("python-pygments" ,python-pygments)))
3886 (home-page "https://github.com/kellyjonbrazil/jc")
3887 (synopsis "Convert the output of command-line tools to JSON")
3888 (description "@code{jc} JSONifies the output of many CLI tools and
3889file-types for easier parsing in scripts.")
3890 (license license:expat)))
3891
3867(define-public jtbl 3892(define-public jtbl
3868 (package 3893 (package
3869 (name "jtbl") 3894 (name "jtbl")