mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 14:53:52 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
26 lines
571 B
Nix
26 lines
571 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;
|
|
nativeCheckInputs = [ alcotest astring ];
|
|
|
|
meta = with lib; {
|
|
description = "Progress bar library for OCaml";
|
|
homepage = "https://github.com/CraigFe/progress";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
};
|
|
}
|