mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: quagga: Fix build and hide CVE.
* gnu/packages/networking.scm (quagga) [inputs]: Add libxcrypt. [properties]: Add lint-hidden-cve property. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
72310bf973
commit
f0ac12fa1a
1 changed files with 5 additions and 1 deletions
|
@ -3143,7 +3143,7 @@ (define-public quagga
|
|||
(delete-file "vtysh/extract.pl")))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs (list gawk gcc-9 pkg-config perl dejagnu))
|
||||
(inputs (list readline c-ares))
|
||||
(inputs (list c-ares libxcrypt readline))
|
||||
(synopsis "Routing Software Suite")
|
||||
(description "Quagga is a routing software suite, providing implementations
|
||||
of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms.
|
||||
|
@ -3154,6 +3154,10 @@ (define-public quagga
|
|||
clients which typically implement a routing protocol and communicate routing
|
||||
updates to the zebra daemon.")
|
||||
(home-page "https://www.nongnu.org/quagga/")
|
||||
;; This CVE concerns systemd services files that we currently don't use.
|
||||
;; If we were to use them, a fixing patch can be found here:
|
||||
;; https://build.opensuse.org/request/show/1035188
|
||||
(properties '((lint-hidden-cve . ("CVE-2021-44038"))))
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public bgpq3
|
||||
|
|
Loading…
Reference in a new issue