diff options
author | David Elsing <david.elsing@posteo.net> | 2025-01-22 18:32:14 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-01-27 14:42:39 +0100 |
commit | 5219c43588fade38fbc497a0bd9fe745134af669 (patch) | |
tree | baf21ce859304da3c32c19a33b566fb36616d201 | |
parent | 6d869d3f6a1fab52384a283ce684f152d9d9fa58 (diff) |
gnu: cpp-httplib: Update to 0.18.5.
* gnu/packages/cpp.scm (cpp-httplib): Update to 0.18.5.
[native-inputs] Add curl.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/cpp.scm | 6 |
1 files 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 @@ tools: ;; header (package (name "cpp-httplib") - (version "0.16.0") + (version "0.18.5") (source (origin (method git-fetch) @@ -1254,7 +1254,7 @@ tools: (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 @@ tools: "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") |