Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
934 B
Nix
45 lines
934 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|