ocamlPackages.trie: init at 1.0.0
Strict impure trie tree in OCaml
This commit is contained in:
parent
67b72b7430
commit
a2dfc892da
|
@ -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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -1021,6 +1021,8 @@ let
|
||||||
|
|
||||||
topkg = callPackage ../development/ocaml-modules/topkg { };
|
topkg = callPackage ../development/ocaml-modules/topkg { };
|
||||||
|
|
||||||
|
trie = callPackage ../development/ocaml-modules/trie { };
|
||||||
|
|
||||||
tsdl = callPackage ../development/ocaml-modules/tsdl { };
|
tsdl = callPackage ../development/ocaml-modules/tsdl { };
|
||||||
|
|
||||||
twt = callPackage ../development/ocaml-modules/twt { };
|
twt = callPackage ../development/ocaml-modules/twt { };
|
||||||
|
|
Loading…
Reference in New Issue