ocamlPackages.unionFind: init at 20220122

This commit is contained in:
Vincent Laporte 2022-03-25 18:44:01 +01:00 committed by Vincent Laporte
parent 6ad8b0bf32
commit 366a59cdc3
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, fetchFromGitLab, buildDunePackage }:
buildDunePackage rec {
pname = "unionFind";
version = "20220122";
useDune2 = true;
minimalOCamlVersion = "4.05";
src = fetchFromGitLab {
domain = "gitlab.inria.fr";
owner = "fpottier";
repo = pname;
rev = version;
sha256 = "sha256:0hdh56rbg8vfjd61q09cbmh8l5wmry5ykivg7gsm0v5ckkb3531r";
};
meta = {
description = "Implementations of the union-find data structure";
license = lib.licenses.lgpl2Only;
inherit (src.meta) homepage;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -1406,6 +1406,8 @@ let
stdint = callPackage ../development/ocaml-modules/stdint { };
unionFind = callPackage ../development/ocaml-modules/unionFind { };
unstrctrd = callPackage ../development/ocaml-modules/unstrctrd { };
uucd = callPackage ../development/ocaml-modules/uucd { };