2021-06-28 23:13:55 +00:00
|
|
|
{ lib, fetchFromGitLab, buildDunePackage }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "fix";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "20230505";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.inria.fr";
|
|
|
|
owner = "fpottier";
|
|
|
|
repo = "fix";
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = version;
|
2024-01-02 11:29:13 +00:00
|
|
|
sha256 = "sha256-Xuw4pEPqAbQjSHrpMCNE7Th0mpbNMSxdEdwvH4hu2SM=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
minimumOCamlVersion = "4.03";
|
|
|
|
useDune2 = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2021-06-28 23:13:55 +00:00
|
|
|
homepage = "https://gitlab.inria.fr/fpottier/fix/";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A simple OCaml module for computing the least solution of a system of monotone equations";
|
2022-01-19 23:45:15 +00:00
|
|
|
license = licenses.lgpl2Only;
|
2021-06-28 23:13:55 +00:00
|
|
|
maintainers = with maintainers; [ vbgl ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|