httplib 0.14.3 -> 0.15.1 https://github.com/yhirose/cpp-httplib/releases attrpath: httplib Checking auto update branch... An auto update branch exists with message `httplib: 0.14.3 -> 0.15.0`. New version is 0.15.1. The auto update branch does not match or exceed the new version. Old version 0.14.3" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , openssl }: stdenv.mkDerivation rec { pname = "httplib"; version = "0.15.0"; src = fetchFromGitHub { owner = "yhirose"; repo = "cpp-httplib"; rev = "v${version}"; hash = "sha256-HV2RiWu4rt3rau/flcha500R67oGwbmyEPPnklpAvgY="; }; nativeBuildInputs = [ cmake ]; buildInputs = [ openssl ]; 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; platforms = platforms.all; }; }