depot/third_party/nixpkgs/pkgs/development/ocaml-modules/fix/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

24 lines
634 B
Nix

{ lib, fetchFromGitLab, buildDunePackage }:
buildDunePackage rec {
pname = "fix";
version = "20220121";
src = fetchFromGitLab {
domain = "gitlab.inria.fr";
owner = "fpottier";
repo = "fix";
rev = "${version}";
sha256 = "sha256-suWkZDLnXEO/4QCGmNuyLFOV0LJsFOMD13gxOcgu6JQ=";
};
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 ];
};
}