mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
70126f0e4a
ocamlPackages.index: 1.4.0 → 1.4.1
26 lines
565 B
Nix
26 lines
565 B
Nix
{ 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 ];
|
|
};
|
|
}
|