diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-06 22:43:56 +0100 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-06-23 12:32:51 +0800 |
commit | 6112eff59ac7389ca6f3f2b6899bed9041c33156 (patch) | |
tree | dfb58dd8c3beecfdf1204706d77df616154de1e1 /gnu/packages/web.scm | |
parent | 2177f57d8f674a3231961fe1f93c6adf2865e08f (diff) |
gnu: jq: Add lint-hidden-cve property.
* gnu/packages/web.scm (jq)[properties]: Add lint-hidden-cve property.
Signed-off-by: Zheng Junjie <z572@z572.online>
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 07399042ae..8c1c5506e9 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -5652,7 +5652,10 @@ grep and friends let you play with text. It is written in portable C. jq can mangle the data format that you have into the one that you want with very little effort, and the program to do so is often shorter and simpler than you'd expect.") - (license (list license:expat license:cc-by3.0)))) + (license (list license:expat license:cc-by3.0)) + ;; Both those CVEs are actually fixed in version 1.7.1. + (properties `((lint-hidden-cve . ("CVE-2023-50246" + "CVE-2023-50268")))))) (define-public go-github-com-mikefarah-yq-v4 (package |