nixpkgs/pkgs/development/ocaml-modules/fix/default.nix
R. RyanTM d67829cf88
ocamlPackages.fix: 20201120 -> 20211231
* ocamlPackages.fix: 20201120 -> 20211125 (#151429)

* ocamlPackages.fix: 20211125 -> 20211231
and fix license

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
2022-01-14 17:25:56 +01:00

25 lines
634 B
Nix

{ lib, fetchFromGitLab, buildDunePackage }:
buildDunePackage rec {
pname = "fix";
version = "20211231";
src = fetchFromGitLab {
domain = "gitlab.inria.fr";
owner = "fpottier";
repo = "fix";
rev = "${version}";
sha256 = "sha256-T/tbiC95yzPb60AiEcvMRU47D8xUZNN5C4X33Y1VB9E=";
};
minimumOCamlVersion = "4.03";
useDune2 = true;
meta = with lib; {
homepage = "https://gitlab.inria.fr/fpottier/fix/";
description = "A simple OCaml module for computing the least solution of a system of monotone equations";
license = licenses.lgpl2Only;
maintainers = with maintainers; [ vbgl ];
};
}