forked from mirrors/nixpkgs
ocamlPackages.unionFind: init at 20220122
This commit is contained in:
parent
6ad8b0bf32
commit
366a59cdc3
24
pkgs/development/ocaml-modules/unionFind/default.nix
Normal file
24
pkgs/development/ocaml-modules/unionFind/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue