2021-07-03 03:11:41 +00:00
|
|
|
{ lib, buildDunePackage, alcotest, lwt, logs, mirage-clock, duration }:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "alcotest-mirage";
|
|
|
|
|
2022-09-22 12:36:57 +00:00
|
|
|
inherit (alcotest) version src;
|
2021-07-03 03:11:41 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ alcotest lwt logs mirage-clock duration ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = alcotest.meta // {
|
|
|
|
description = "Mirage implementation for Alcotest";
|
|
|
|
maintainers = with lib.maintainers; [ ulrikstrid anmonteiro ];
|
|
|
|
};
|
|
|
|
}
|