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