ocamlPackages.trie: small cleaning

This commit is contained in:
Vincent Laporte
2025-11-28 05:58:44 +01:00
parent 6bfa08651e
commit d66b9b57a0
@@ -4,24 +4,22 @@
fetchFromGitHub,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "trie";
version = "1.0.0";
useDune2 = true;
src = fetchFromGitHub {
owner = "kandu";
repo = pname;
rev = version;
sha256 = "0s7p9swjqjsqddylmgid6cv263ggq7pmb734z4k84yfcrgb6kg4g";
repo = "trie";
tag = finalAttrs.version;
hash = "sha256-j7xp1svMeYIm+WScVe/B7w0jNjMtvkp9a1hLLLlO92g=";
};
meta = {
inherit (src.meta) homepage;
homepage = "https://github.com/kandu/trie/";
license = lib.licenses.mit;
description = "Strict impure trie tree";
maintainers = [ lib.maintainers.vbgl ];
};
}
})