ocamlPackages.spelll: init at 0.3

Fuzzy string searching, using Levenshtein automaton. Can be used for
spell-checking.

Homepage: https://github.com/c-cube/spelll
This commit is contained in:
Vincent Laporte 2019-10-10 06:23:46 +00:00 committed by Vincent Laporte
parent 7885eeaffd
commit 7264e96053
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, buildDunePackage
, seq
}:
buildDunePackage rec {
pname = "spelll";
version = "0.3";
src = fetchFromGitHub {
owner = "c-cube";
repo = pname;
rev = "v${version}";
sha256 = "03adqisgsazsxdkrypp05k3g91hydfgcif2014il63gdbd9nhzlh";
};
propagatedBuildInputs = [ seq ];
meta = {
inherit (src.meta) homepage;
description = "Fuzzy string searching, using Levenshtein automaton";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -743,6 +743,8 @@ let
sedlex = callPackage ../development/ocaml-modules/sedlex { };
spelll = callPackage ../development/ocaml-modules/spelll { };
sqlite3EZ = callPackage ../development/ocaml-modules/sqlite3EZ { };
ssl = callPackage ../development/ocaml-modules/ssl { };