summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/progress/default.nix
blob: af1e0925d1509061b3268e356cc62034a2b0cbb7 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  lib,
  buildDunePackage,
  fmt,
  logs,
  mtime,
  optint,
  terminal,
  vector,
  alcotest,
  astring,
}:

buildDunePackage {
  pname = "progress";

  minimalOCamlVersion = "4.08";

  inherit (terminal) version src;

  propagatedBuildInputs = [
    fmt
    logs
    mtime
    optint
    terminal
    vector
  ];

  doCheck = true;
  checkInputs = [
    alcotest
    astring
  ];

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