nixpkgs/pkgs/development/ocaml-modules/alcotest/lwt.nix
2020-12-08 17:19:48 +01:00

17 lines
308 B
Nix

{ lib, buildDunePackage, alcotest, logs, ocaml_lwt }:
buildDunePackage {
pname = "alcotest-lwt";
inherit (alcotest) version src useDune2;
propagatedBuildInputs = [ alcotest logs ocaml_lwt ];
doCheck = true;
meta = alcotest.meta // {
description = "Lwt-based helpers for Alcotest";
};
}