summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/alcotest/mirage.nix
blob: dcf6533cdab13e6286c25216439502617edd03dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, buildDunePackage, alcotest, lwt, logs, mirage-clock, duration }:

buildDunePackage {
  pname = "alcotest-mirage";

  inherit (alcotest) version src;

  propagatedBuildInputs = [ alcotest lwt logs mirage-clock duration ];

  doCheck = true;

  meta = alcotest.meta // {
    description = "Mirage implementation for Alcotest";
    maintainers = with lib.maintainers; [ ulrikstrid anmonteiro ];
  };
}