depot/third_party/nixpkgs/pkgs/development/libraries/rapidfuzz-cpp/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

52 lines
1.2 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, catch2_3
, python3Packages
}:
stdenv.mkDerivation (finalAttrs: {
pname = "rapidfuzz-cpp";
version = "3.0.0";
src = fetchFromGitHub {
owner = "maxbachmann";
repo = "rapidfuzz-cpp";
rev = "v${finalAttrs.version}";
hash = "sha256-N9yGOxlk1+wgRXWLbDIXWQz+/pwbnYVs3ub4/16Nzws=";
};
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
];
passthru = {
tests = {
/** `python3Packages.levenshtein` crucially depends on `rapidfuzz-cpp` */
inherit (python3Packages) levenshtein;
};
};
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;
};
})