ocamlPackages.trie: init at 1.0.0

Strict impure trie tree in OCaml
This commit is contained in:
Vincent Laporte 2020-12-29 16:12:12 +01:00 committed by Vincent Laporte
parent 67b72b7430
commit a2dfc892da
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildDunePackage, fetchFromGitHub }:
buildDunePackage rec {
pname = "trie";
version = "1.0.0";
useDune2 = true;
src = fetchFromGitHub {
owner = "kandu";
repo = pname;
rev = version;
sha256 = "0s7p9swjqjsqddylmgid6cv263ggq7pmb734z4k84yfcrgb6kg4g";
};
meta = {
inherit (src.meta) homepage;
license = lib.licenses.mit;
description = "Strict impure trie tree";
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -1021,6 +1021,8 @@ let
topkg = callPackage ../development/ocaml-modules/topkg { };
trie = callPackage ../development/ocaml-modules/trie { };
tsdl = callPackage ../development/ocaml-modules/tsdl { };
twt = callPackage ../development/ocaml-modules/twt { };