diff options
| author | gemmaro <gemmaro.dev@gmail.com> | 2026-01-11 15:25:26 +0900 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-27 23:02:43 +0000 |
| commit | 57e10b6161bfeb636bb497726cc70073f3678d86 (patch) | |
| tree | 3b4181035cabfcdb7022d814699930bec601773d /gnu/packages/web.scm | |
| parent | ac668a473d52f22fd01b42e8281768807573a25d (diff) | |
gnu: uriparser: Update to 1.0.0 [security fixes].
Includes fix for CVE-2025-67899.
* gnu/packages/web.scm (uriparser): Update to 1.0.0.
[arguments]<#:configure-flags>: Explicitly enables the test building flag.
Merges: https://codeberg.org/guix/guix/pulls/5541
Change-Id: Ic4760647dadf057f81adbb246f9aa9eb11a05406
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/web.scm')
| -rw-r--r-- | gnu/packages/web.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 2f269232f9e..f1bdbf9f977 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -78,7 +78,7 @@ ;;; Copyright © 2025 Ashish SHUKLA <ashish.is@lostca.se> ;;; Copyright © 2025 Philippe Swartvagher <phil.swart@gmx.fr> ;;; Copyright © 2025 pinoaffe <pinoaffe@gmail.com> -;;; Copyright © 2025 gemmaro <gemmaro.dev@gmail.com> +;;; Copyright © 2025, 2026 gemmaro <gemmaro.dev@gmail.com> ;;; Copyright © 2025 Igorj Gorjaĉev <igor@goryachev.org> ;;; Copyright © 2026 Rodion Goritskov <rodion@goritskov.com> ;;; Copyright © 2026 Sharlatan Hellseher <sharlatanus@gmail.com> @@ -10202,7 +10202,7 @@ week, a month) and then browse/organise it while staying disconnected.") (define-public uriparser (package (name "uriparser") - (version "0.9.9") + (version "1.0.0") (source (origin (method git-fetch) (uri (git-reference @@ -10211,12 +10211,12 @@ week, a month) and then browse/organise it while staying disconnected.") (file-name (git-file-name name version)) (sha256 (base32 - "1cd7z37ap5s5ipr4vnwzfmwir9n1ir266rnxq9rjisfzy5gq903w")))) + "05y33g80wgf155lm6ir21kw2an59fgf3q4w26iaarc8zi75m324k")))) (build-system cmake-build-system) (native-inputs (list googletest doxygen graphviz)) (arguments (if (%current-target-system) (list #:configure-flags #~(list "-DURIPARSER_BUILD_TESTS=OFF")) - '())) + (list #:configure-flags #~(list "-DURIPARSER_BUILD_TESTS=ON")))) (synopsis "Strictly RFC 3986 compliant URI parsing and handling library") (description "uriparser is a strictly RFC 3986 compliant URI parsing and handling library written in C89 (\"ANSI C\"). uriparser is fast and supports |
