1{
2 lib,
3 fetchFromGitLab,
4 buildDunePackage,
5}:
6
7buildDunePackage rec {
8 pname = "fix";
9 version = "20250919";
10
11 src = fetchFromGitLab {
12 domain = "gitlab.inria.fr";
13 owner = "fpottier";
14 repo = "fix";
15 tag = version;
16 hash = "sha256-CVxOLlSKKX1kb1bi6IbSo7SH5GsVynI4de0c5NUmq+s=";
17 };
18
19 minimalOCamlVersion = "4.03";
20
21 meta = with lib; {
22 homepage = "https://gitlab.inria.fr/fpottier/fix/";
23 description = "Simple OCaml module for computing the least solution of a system of monotone equations";
24 license = licenses.lgpl2Only;
25 maintainers = with maintainers; [ vbgl ];
26 };
27}