depot/third_party/nixpkgs/pkgs/development/ocaml-modules/alcotest/lwt.nix

35 lines
403 B
Nix

{
buildDunePackage,
alcotest,
logs,
lwt,
fmt,
re,
cmdliner,
}:
buildDunePackage {
pname = "alcotest-lwt";
inherit (alcotest) version src;
duneVersion = "3";
propagatedBuildInputs = [
alcotest
logs
lwt
fmt
];
doCheck = true;
checkInputs = [
re
cmdliner
];
meta = alcotest.meta // {
description = "Lwt-based helpers for Alcotest";
};
}