ocamlPackages.trie: init at 1.0.0

Strict impure trie tree in OCaml
wip/yesman
Vincent Laporte 4 years ago committed by Vincent Laporte
parent 67b72b7430
commit a2dfc892da
  1. 23
      pkgs/development/ocaml-modules/trie/default.nix
  2. 2
      pkgs/top-level/ocaml-packages.nix

@ -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 { };
trie = callPackage ../development/ocaml-modules/trie { };
tsdl = callPackage ../development/ocaml-modules/tsdl { };
twt = callPackage ../development/ocaml-modules/twt { };

Loading…
Cancel
Save