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