2021-10-29 15:45:05 +03:00
|
|
|
{ lib, fetchurl, buildDunePackage }:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "unionFind";
|
2022-10-03 12:29:59 +03:00
|
|
|
version = "20220122";
|
2021-10-29 15:45:05 +03:00
|
|
|
|
|
|
|
minimumOCamlVersion = "4.0.8";
|
|
|
|
|
|
|
|
useDune2 = true;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url =
|
2022-10-03 12:29:59 +03:00
|
|
|
"https://gitlab.inria.fr/fpottier/${pname}/-/archive/${version}/archive.tar.gz";
|
|
|
|
hash = "sha256-85+5KNYKXsNAH568qR8/AFC9UDviLJEO/Fztc9cRHZA=";
|
2021-10-29 15:45:05 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://gitlab.inria.fr/fpottier/unionFind/";
|
|
|
|
description = "Implementations of the union-find data structure";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ ];
|
|
|
|
};
|
|
|
|
}
|