nixpkgs/pkgs/development/ocaml-modules/progress/default.nix

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

26 lines
567 B
Nix
Raw Normal View History

{ lib, buildDunePackage
, fmt, logs, mtime, optint, terminal, vector
, alcotest, astring
2021-01-18 13:28:46 +00:00
}:
buildDunePackage rec {
pname = "progress";
minimalOCamlVersion = "4.08";
duneVersion = "3";
2021-01-18 13:28:46 +00:00
inherit (terminal) version src;
2021-01-18 13:28:46 +00:00
propagatedBuildInputs = [ fmt logs mtime optint terminal vector ];
2021-01-18 13:28:46 +00:00
doCheck = true;
checkInputs = [ alcotest astring ];
2021-01-18 13:28:46 +00:00
meta = with lib; {
description = "Progress bar library for OCaml";
homepage = "https://github.com/CraigFe/progress";
license = licenses.mit;
maintainers = [ maintainers.sternenseemann ];
};
}