summaryrefslogtreecommitdiff
path: root/guix/lint.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-10-20 22:17:59 +0200
committerLudovic Courtès <ludo@gnu.org>2019-10-23 16:40:17 +0200
commit9efa2c28a4f842b7ca1977e084299de441842856 (patch)
treede706e05945fc1b7270d5c1acfd1fa9358513257 /guix/lint.scm
parent74afaa37d5dec1a9d1b83951529ba69d8947fb07 (diff)
downloadguix-patches-9efa2c28a4f842b7ca1977e084299de441842856.tar
guix-patches-9efa2c28a4f842b7ca1977e084299de441842856.tar.gz
lint: Re-enable CVE checker.
This reverts d7fcd9c565812919109ae88049f5d8bf4c56f9bd. * guix/lint.scm (%network-dependent-checkers): Re-enable 'cve checker.
Diffstat (limited to 'guix/lint.scm')
-rw-r--r--guix/lint.scm16
1 files changed, 5 insertions, 11 deletions
diff --git a/guix/lint.scm b/guix/lint.scm
index 6336cf4e3b..03a8e88225 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -1319,17 +1319,11 @@ or a list thereof")
(name 'github-url)
(description "Suggest GitHub URLs")
(check check-github-url))
-
- ;; FIXME: Commented out as a consequence of the XML CVE feed retirement:
- ;; <https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>.
- ;; Reinstate it once the JSON feed is supported.
-
- ;; (lint-checker
- ;; (name 'cve)
- ;; (description "Check the Common Vulnerabilities and Exposures\
- ;; (CVE) database")
- ;; (check check-vulnerabilities))
-
+ (lint-checker
+ (name 'cve)
+ (description "Check the Common Vulnerabilities and Exposures\
+ (CVE) database")
+ (check check-vulnerabilities))
(lint-checker
(name 'refresh)
(description "Check the package for new upstream releases")