Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchFromGitLab, buildDunePackage }:
2
3buildDunePackage rec {
4 pname = "fix";
5 version = "20220121";
6
7 src = fetchFromGitLab {
8 domain = "gitlab.inria.fr";
9 owner = "fpottier";
10 repo = "fix";
11 rev = "${version}";
12 sha256 = "sha256-suWkZDLnXEO/4QCGmNuyLFOV0LJsFOMD13gxOcgu6JQ=";
13 };
14
15 minimumOCamlVersion = "4.03";
16 useDune2 = true;
17
18 meta = with lib; {
19 homepage = "https://gitlab.inria.fr/fpottier/fix/";
20 description = "A simple OCaml module for computing the least solution of a system of monotone equations";
21 license = licenses.lgpl2Only;
22 maintainers = with maintainers; [ vbgl ];
23 };
24}