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