iosevka: 32.4.0 -> 32.5.0 (#378549)
[NixPkgs.git] / pkgs / development / ocaml-modules / fix / default.nix
bloba16a93debab5599d3bc75fad4b4b378abe428ebe
2   lib,
3   fetchFromGitLab,
4   buildDunePackage,
5 }:
7 buildDunePackage rec {
8   pname = "fix";
9   version = "20230505";
11   src = fetchFromGitLab {
12     domain = "gitlab.inria.fr";
13     owner = "fpottier";
14     repo = "fix";
15     rev = version;
16     sha256 = "sha256-Xuw4pEPqAbQjSHrpMCNE7Th0mpbNMSxdEdwvH4hu2SM=";
17   };
19   minimalOCamlVersion = "4.03";
20   useDune2 = true;
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   };