rapidfuzz-cpp 2.0.0 -> 2.2.3 https://repology.org/project/rapidfuzz-cpp/versions attrpath: rapidfuzz-cpp Checking auto update branch... An auto update branch exists with message `rapidfuzz-cpp: 2.0.0 -> 2.1.1`. New version is 2.2.3. The auto update branch does not match or exceed the new version. Old version 2.0.0" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , catch2_3 }: stdenv.mkDerivation (finalAttrs: { pname = "rapidfuzz-cpp"; version = "2.1.1"; src = fetchFromGitHub { owner = "maxbachmann"; repo = "rapidfuzz-cpp"; rev = "v${finalAttrs.version}"; hash = "sha256-OeGn3ks+vSHt4Kdzy6kqhpFOtjoHrbPZB1BrV6Ggzz4="; }; nativeBuildInputs = [ cmake ]; cmakeFlags = lib.optionals finalAttrs.finalPackage.doCheck [ "-DRAPIDFUZZ_BUILD_TESTING=ON" ]; CXXFLAGS = lib.optionals stdenv.cc.isClang [ # error: no member named 'fill' in namespace 'std' "-include algorithm" ]; nativeCheckInputs = [ catch2_3 ]; meta = { description = "Rapid fuzzy string matching in C++ using the Levenshtein Distance"; homepage = "https://github.com/maxbachmann/rapidfuzz-cpp"; changelog = "https://github.com/maxbachmann/rapidfuzz-cpp/blob/${finalAttrs.src.rev}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ dotlambda ]; platforms = lib.platforms.unix; }; })