ocamlPackages.patricia-tree: init at 0.11.0

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
Ethan Carter Edwards
2025-06-04 22:48:19 -04:00
committed by Vincent Laporte
parent dcda2d2d00
commit 63aa833704
2 changed files with 46 additions and 0 deletions
@@ -0,0 +1,44 @@
{
lib,
buildDunePackage,
fetchFromGitHub,
findlib,
mdx,
qcheck-core,
ppx_inline_test,
}:
buildDunePackage rec {
pname = "patricia-tree";
version = "0.11.0";
minimalOCamlVersion = "4.14";
src = fetchFromGitHub {
owner = "codex-semantics-library";
repo = "patricia-tree";
tag = "v${version}";
hash = "sha256-lpmU0KhsyIHxPBiw38ssA7XFEMsRvOT03MByoJG88Xs=";
};
nativeCheckInputs = [
mdx.bin
];
checkInputs = [
mdx
ppx_inline_test
qcheck-core
];
doCheck = true;
meta = {
description = "Patricia Tree data structure in OCaml";
homepage = "https://codex.top/api/patricia-tree/";
downloadPage = "https://github.com/codex-semantics-library/patricia-tree";
changelog = "https://github.com/codex-semantics-library/patricia-tree/releases/tag/v${version}";
license = lib.licenses.lgpl21Only;
maintainers = [ lib.maintainers.ethancedwards8 ];
};
}
+2
View File
@@ -1654,6 +1654,8 @@ let
path_glob = callPackage ../development/ocaml-modules/path_glob { };
patricia-tree = callPackage ../development/ocaml-modules/patricia-tree { };
pbkdf = callPackage ../development/ocaml-modules/pbkdf { };
pbrt = callPackage ../development/ocaml-modules/pbrt { };