me
/
guix
Archived
1
0
Fork 0

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
Efraim Flashner 2022-04-10 20:48:10 +03:00
parent 96a132809f
commit 72abf9b9b8
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 8 additions and 4 deletions

View File

@ -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")