ocamlPackages.unionFind: init at 20220122

authored by Vincent Laporte and committed by Vincent Laporte 366a59cd 6ad8b0bf

+26
+24
pkgs/development/ocaml-modules/unionFind/default.nix
··· 1 + { lib, fetchFromGitLab, buildDunePackage }: 2 + 3 + buildDunePackage rec { 4 + pname = "unionFind"; 5 + version = "20220122"; 6 + 7 + useDune2 = true; 8 + minimalOCamlVersion = "4.05"; 9 + 10 + src = fetchFromGitLab { 11 + domain = "gitlab.inria.fr"; 12 + owner = "fpottier"; 13 + repo = pname; 14 + rev = version; 15 + sha256 = "sha256:0hdh56rbg8vfjd61q09cbmh8l5wmry5ykivg7gsm0v5ckkb3531r"; 16 + }; 17 + 18 + meta = { 19 + description = "Implementations of the union-find data structure"; 20 + license = lib.licenses.lgpl2Only; 21 + inherit (src.meta) homepage; 22 + maintainers = [ lib.maintainers.vbgl ]; 23 + }; 24 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1406 1406 1407 1407 stdint = callPackage ../development/ocaml-modules/stdint { }; 1408 1408 1409 + unionFind = callPackage ../development/ocaml-modules/unionFind { }; 1410 + 1409 1411 unstrctrd = callPackage ../development/ocaml-modules/unstrctrd { }; 1410 1412 1411 1413 uucd = callPackage ../development/ocaml-modules/uucd { };