mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
930b1c06b1
* ocamlPackages.otr: use Dune 3 * ocamlPackages.h2: use Dune 3 * ocamlPackages.index: use Dune 3 * ocamlPackages.progress: use Dune 3 * ocamlPackages.repr: use Dune 3 * ocamlPackages.emile: use Dune 3 * ocamlPackages.bistro: use Dune 3 * ocamlPackages.base64: 3.5.0 → 3.5.1
26 lines
567 B
Nix
26 lines
567 B
Nix
{ lib, buildDunePackage
|
|
, fmt, logs, mtime, optint, terminal, vector
|
|
, alcotest, astring
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "progress";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
duneVersion = "3";
|
|
|
|
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 ];
|
|
};
|
|
}
|