biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / progress / default.nix
blob7ca95a0882434df227e4b1d9d7d0ecb9532d9f49
1 { lib, buildDunePackage
2 , fmt, logs, mtime, optint, terminal, vector
3 , alcotest, astring
4 }:
6 buildDunePackage rec {
7   pname = "progress";
9   minimalOCamlVersion = "4.08";
11   inherit (terminal) version src;
13   propagatedBuildInputs = [ fmt logs mtime optint terminal vector ];
15   doCheck = true;
16   checkInputs = [ alcotest astring ];
18   meta = with lib; {
19     description = "Progress bar library for OCaml";
20     homepage = "https://github.com/CraigFe/progress";
21     license = licenses.mit;
22     maintainers = [ maintainers.sternenseemann ];
23   };