8 stdenv.mkDerivation rec {
9 pname = "jarowinkler-cpp";
12 src = fetchFromGitHub {
13 owner = "maxbachmann";
14 repo = "jarowinkler-cpp";
16 hash = "sha256-GuwDSCYTfSwqTnzZSft3ufVSKL7255lVvbJhBxKxjJw=";
23 cmakeFlags = lib.optionals doCheck [
24 "-DJARO_WINKLER_BUILD_TESTING=ON"
34 description = "Fast Jaro and Jaro-Winkler distance";
35 homepage = "https://github.com/maxbachmann/jarowinkler-cpp";
36 changelog = "https://github.com/maxbachmann/jarowinkler-cpp/blob/${src.rev}/CHANGELOG.md";
37 license = lib.licenses.mit;
38 maintainers = with lib.maintainers; [ dotlambda ];
39 platforms = lib.platforms.unix;