Files
nixpkgs/pkgs/development/ocaml-modules/alcotest/lwt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
403 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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";
};
}