about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/progress/default.nix
blob: 35c7ee9eb43c5892fa440002dcda15c170c64ed9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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;
  nativeCheckInputs = [ alcotest astring ];

  meta = with lib; {
    description = "Progress bar library for OCaml";
    homepage = "https://github.com/CraigFe/progress";
    license = licenses.mit;
    maintainers = [ maintainers.sternenseemann ];
  };
}