httplib: 0.11.1 -> 0.11.3

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
R. RyanTM 2022-12-10 19:50:22 -08:00 committed by GitHub
parent 8fd00153ff
commit f30e1cd088
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,13 +5,13 @@
stdenvNoCC.mkDerivation rec {
pname = "httplib";
version = "0.11.1";
version = "0.11.3";
src = fetchFromGitHub {
owner = "yhirose";
repo = "cpp-httplib";
rev = "v${version}";
sha256 = "sha256-rsElqtoRz/sOXpAsfSJbMlwIKdaGJkSZfKHzB/wMhY8=";
hash = "sha256-gly0AQ2DCZJQCAPQL5Xsc/kTvFK2twIDbHwbjvrW+P4=";
};
# Header-only library.
@ -25,6 +25,7 @@ stdenvNoCC.mkDerivation rec {
meta = with lib; {
description = "A C++ header-only HTTP/HTTPS server and client library";
homepage = "https://github.com/yhirose/cpp-httplib";
changelog = "https://github.com/yhirose/cpp-httplib/releases/tag/v${version}";
maintainers = with maintainers; [ aidalgol ];
license = licenses.mit;
};