nixpkgs/pkgs/development/ocaml-modules/progress/default.nix
Vincent Laporte 930b1c06b1
ocamlPackages.base64: 3.5.0 → 3.5.1 (#218580)
* 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
2023-02-27 09:14:03 -03:00

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