blob: b276f86cc4151156525982017586c27120b45fcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
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 ];
};
})
|