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";
|
2022-01-19 23:45:15 +00:00
|
|
|
version = "20211231";
|
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";
|
|
|
|
rev = "${version}";
|
2022-01-19 23:45:15 +00:00
|
|
|
sha256 = "sha256-T/tbiC95yzPb60AiEcvMRU47D8xUZNN5C4X33Y1VB9E=";
|
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
|
|
|
};
|
|
|
|
}
|