Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
613 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
};
}