depot/third_party/nixpkgs/pkgs/development/ocaml-modules/progress/default.nix
Default email 4cb23072fc Project import generated by Copybara.
GitOrigin-RevId: 6d8215281b2f87a5af9ed7425a26ac575da0438f
2022-01-20 00:45:15 +01:00

25 lines
565 B
Nix

{ lib, buildDunePackage
, fmt, logs, mtime, optint, terminal, vector
, alcotest, astring
}:
buildDunePackage rec {
pname = "progress";
minimalOCamlVersion = "4.08";
useDune2 = true;
inherit (terminal) version src;
propagatedBuildInputs = [ fmt logs mtime optint terminal vector ];
doCheck = true;
checkInputs = [ alcotest astring ];
meta = with lib; {
description = "Progress bar library for OCaml";
homepage = "https://github.com/CraigFe/progress";
license = licenses.mit;
maintainers = [ maintainers.sternenseemann ];
};
}