gnu: git: Hide CVEs from the linter.

* gnu/packages/version-control.scm (git)[properties]: Set 'properties'
  field.
This commit is contained in:
Brice Waegeneire 2021-08-17 20:25:52 +02:00
parent a45d5a9478
commit ea04295256
No known key found for this signature in database
GPG key ID: A94903A166A18FAE

View file

@ -538,6 +538,13 @@ (define-public git
(description
"Git is a free distributed version control system designed to handle
everything from small to very large projects with speed and efficiency.")
;; XXX: Ignore this CVE to work around a name clash with the unrelated
;; "cpe:2.3:a:jenkins:git" package. The proper fix is for (guix cve) to
;; account for "vendor names".
(properties '((lint-hidden-cve . ("CVE-2018-1000182"
"CVE-2018-1000110"
"CVE-2019-1003010"
"CVE-2020-2136"))))
(license license:gpl2)
(home-page "https://git-scm.com/")))