fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / ocaml-modules / unionFind / default.nix
blob3e374acfe6c2286ee70840bc8d7547dc47485097
2   lib,
3   fetchFromGitLab,
4   buildDunePackage,
5 }:
7 buildDunePackage rec {
8   pname = "unionFind";
9   version = "20220122";
11   useDune2 = true;
12   minimalOCamlVersion = "4.05";
14   src = fetchFromGitLab {
15     domain = "gitlab.inria.fr";
16     owner = "fpottier";
17     repo = pname;
18     rev = version;
19     sha256 = "sha256:0hdh56rbg8vfjd61q09cbmh8l5wmry5ykivg7gsm0v5ckkb3531r";
20   };
22   meta = {
23     description = "Implementations of the union-find data structure";
24     license = lib.licenses.lgpl2Only;
25     inherit (src.meta) homepage;
26     maintainers = [ lib.maintainers.vbgl ];
27   };