Files
2026-01-31 14:40:21 +00:00

28 lines
632 B
Nix

{
lib,
fetchFromGitLab,
buildDunePackage,
}:
buildDunePackage (finalAttrs: {
pname = "fix";
version = "20250919";
src = fetchFromGitLab {
domain = "gitlab.inria.fr";
owner = "fpottier";
repo = "fix";
tag = finalAttrs.version;
hash = "sha256-CVxOLlSKKX1kb1bi6IbSo7SH5GsVynI4de0c5NUmq+s=";
};
minimalOCamlVersion = "4.03";
meta = {
homepage = "https://gitlab.inria.fr/fpottier/fix/";
description = "Simple OCaml module for computing the least solution of a system of monotone equations";
license = lib.licenses.lgpl2Only;
maintainers = with lib.maintainers; [ vbgl ];
};
})