Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 24 lines 546 B view raw
1{ lib, buildDunePackage 2, fmt, logs, mtime, optint, terminal, vector 3, alcotest, astring 4}: 5 6buildDunePackage rec { 7 pname = "progress"; 8 9 minimalOCamlVersion = "4.08"; 10 11 inherit (terminal) version src; 12 13 propagatedBuildInputs = [ fmt logs mtime optint terminal vector ]; 14 15 doCheck = true; 16 checkInputs = [ alcotest astring ]; 17 18 meta = with lib; { 19 description = "Progress bar library for OCaml"; 20 homepage = "https://github.com/CraigFe/progress"; 21 license = licenses.mit; 22 maintainers = [ maintainers.sternenseemann ]; 23 }; 24}