nixpkgs/pkgs/development/ocaml-modules/progress/default.nix
Vincent Laporte 70126f0e4a
ocamlPackages.progress: 0.1.1 → 0.2.1
ocamlPackages.index: 1.4.0 → 1.4.1
2022-01-14 15:43:06 +01:00

26 lines
565 B
Nix

{ 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;
checkInputs = [ alcotest astring ];
meta = with lib; {
description = "Progress bar library for OCaml";
homepage = "https://github.com/CraigFe/progress";
license = licenses.mit;
maintainers = [ maintainers.sternenseemann ];
};
}