ocamlPackages.alcotest-lwt: init at 0.8.5

This commit is contained in:
Vincent Laporte
2019-12-09 17:02:11 +00:00
parent d7ec7abd1f
commit e7857f0d30
2 changed files with 18 additions and 0 deletions
@@ -0,0 +1,16 @@
{ lib, buildDunePackage, alcotest, logs, ocaml_lwt }:
buildDunePackage {
pname = "alcotest-lwt";
inherit (alcotest) version src;
propagatedBuildInputs = [ alcotest logs ocaml_lwt ];
doCheck = true;
meta = alcotest.meta // {
description = "Lwt-based helpers for Alcotest";
};
}