httplib 0.12.1 -> 0.12.2 https://github.com/yhirose/cpp-httplib/releases attrpath: httplib Checking auto update branch... No auto update branch exists Old version 0.12.1" not present in master derivation file with contents: { lib , stdenvNoCC , fetchFromGitHub }: stdenvNoCC.mkDerivation rec { pname = "httplib"; version = "0.12.2"; src = fetchFromGitHub { owner = "yhirose"; repo = "cpp-httplib"; rev = "v${version}"; hash = "sha256-mpHw9fzGpYz04rgnfG/qTNrXIf6q+vFfIsjb56kJsLg="; }; # Header-only library. dontBuild = true; installPhase = '' mkdir -p "$out/include" cp -r httplib.h "$out/include" ''; 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; }; }