mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
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 { };
|
||||
|
||||
spelll = callPackage ../development/ocaml-modules/spelll { };
|
||||
|
||||
sqlite3EZ = callPackage ../development/ocaml-modules/sqlite3EZ { };
|
||||
|
||||
ssl = callPackage ../development/ocaml-modules/ssl { };
|
||||
|
Loading…
Reference in New Issue
Block a user