Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
597 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 = with lib; {
description = "Progress bar library for OCaml";
homepage = "https://github.com/CraigFe/progress";
license = licenses.mit;
maintainers = [ maintainers.sternenseemann ];
};
}