mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: jq: Only build with valgrind on supported systems.
* gnu/packages/web.scm (jq)[native-inputs]: Only include valgrind on systems which it supports.
This commit is contained in:
parent
96a132809f
commit
72abf9b9b8
1 changed files with 8 additions and 4 deletions
|
@ -4886,10 +4886,14 @@ (define-public jq
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue