gnu: jq: Only build with valgrind on supported systems.
* gnu/packages/web.scm (jq)[native-inputs]: Only include valgrind on systems which it supports.master
parent
96a132809f
commit
72abf9b9b8
|
@ -4886,10 +4886,14 @@ It uses the uwsgi protocol for all the networking/interprocess communications.")
|
|||
(inputs
|
||||
(list oniguruma))
|
||||
(native-inputs
|
||||
(list ;; TODO fix gems to generate documentation
|
||||
;;("ruby" ,ruby)
|
||||
;;("bundler" ,bundler)
|
||||
valgrind))
|
||||
(append
|
||||
;; TODO: fix gems to generate documentation
|
||||
;(list ruby bundler)
|
||||
'()
|
||||
(if (member (%current-system)
|
||||
(package-supported-systems valgrind))
|
||||
(list valgrind)
|
||||
'())))
|
||||
(build-system gnu-build-system)
|
||||
(home-page "https://stedolan.github.io/jq/")
|
||||
(synopsis "Command-line JSON processor")
|
||||
|
|
Reference in New Issue