From 5219c43588fade38fbc497a0bd9fe745134af669 Mon Sep 17 00:00:00 2001 From: David Elsing Date: Wed, 22 Jan 2025 18:32:14 +0000 Subject: [PATCH] gnu: cpp-httplib: Update to 0.18.5. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/cpp.scm (cpp-httplib): Update to 0.18.5. [native-inputs] Add curl. Signed-off-by: Ludovic Courtès --- gnu/packages/cpp.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 626118e2db..5e6dce637d 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1246,7 +1246,7 @@ (define-public cpp-httplib ;; header (package (name "cpp-httplib") - (version "0.16.0") + (version "0.18.5") (source (origin (method git-fetch) @@ -1254,7 +1254,7 @@ (define-public cpp-httplib (url "https://github.com/yhirose/cpp-httplib") (commit (string-append "v" version)))) (sha256 - (base32 "0n4ribq7c6lqj0hn50pdvy7wml62fqbgrgysb038fq1qc6xyw3np")) + (base32 "1jc31n4xdrknal4i1dvf8j6j9kafpczi0w5gbbi89xlir9dgm5kp")) (file-name (git-file-name name version)))) (build-system cmake-build-system) (arguments @@ -1290,7 +1290,7 @@ (define-public cpp-httplib "TooManyRedirectTest" "UrlWithSpace" "YahooRedirectTest" "YahooRedirectTest"))))))) (native-inputs - (list googletest python)) + (list curl googletest python)) (inputs (list brotli openssl zlib)) (home-page "https://github.com/yhirose/cpp-httplib")