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:
parent
7885eeaffd
commit
7264e96053
24
pkgs/development/ocaml-modules/spelll/default.nix
Normal file
24
pkgs/development/ocaml-modules/spelll/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -743,6 +743,8 @@ let
|
|||||||
|
|
||||||
sedlex = callPackage ../development/ocaml-modules/sedlex { };
|
sedlex = callPackage ../development/ocaml-modules/sedlex { };
|
||||||
|
|
||||||
|
spelll = callPackage ../development/ocaml-modules/spelll { };
|
||||||
|
|
||||||
sqlite3EZ = callPackage ../development/ocaml-modules/sqlite3EZ { };
|
sqlite3EZ = callPackage ../development/ocaml-modules/sqlite3EZ { };
|
||||||
|
|
||||||
ssl = callPackage ../development/ocaml-modules/ssl { };
|
ssl = callPackage ../development/ocaml-modules/ssl { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user