mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
4922992a04
ocamlPackages.data-encoding: 0.7.1 → 1.0.1 ocamlPackages.index: 1.6.1 → 1.6.2 ocamlPackages.irmin: 3.7.2 → 3.9.0 ocamlPackages.irmin-http: remove at 3.7.2 ocamlPackages.mirage-kv: 4.0.1 → 6.1.1 ocamlPackages.terminal: 0.2.1 → 0.2.2
25 lines
546 B
Nix
25 lines
546 B
Nix
{ lib, buildDunePackage
|
|
, fmt, logs, mtime, optint, terminal, vector
|
|
, alcotest, astring
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
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 ];
|
|
};
|
|
}
|