vscode-extensions.yoavbls.pretty-ts-errors: 0.5.4 -> 0.6.1 (#363464)
[NixPkgs.git] / pkgs / development / ocaml-modules / progress / default.nix
blobd5ca6eee3860c2cf9ed9a3ec458005cc9df1bd25
2   lib,
3   buildDunePackage,
4   fmt,
5   logs,
6   mtime,
7   optint,
8   terminal,
9   vector,
10   alcotest,
11   astring,
14 buildDunePackage rec {
15   pname = "progress";
17   minimalOCamlVersion = "4.08";
19   inherit (terminal) version src;
21   propagatedBuildInputs = [
22     fmt
23     logs
24     mtime
25     optint
26     terminal
27     vector
28   ];
30   doCheck = true;
31   checkInputs = [
32     alcotest
33     astring
34   ];
36   meta = with lib; {
37     description = "Progress bar library for OCaml";
38     homepage = "https://github.com/CraigFe/progress";
39     license = licenses.mit;
40     maintainers = [ maintainers.sternenseemann ];
41   };