My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/progress/default.nix

25 lines
565 B

{ 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 ];
};
}