nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / alcotest / mirage.nix
blob76e202d20c4fabaf7da78278cb61cbdb6520568f
2   lib,
3   buildDunePackage,
4   alcotest,
5   lwt,
6   logs,
7   mirage-clock,
8   duration,
9 }:
11 buildDunePackage {
12   pname = "alcotest-mirage";
14   inherit (alcotest) version src;
16   duneVersion = "3";
18   propagatedBuildInputs = [
19     alcotest
20     lwt
21     logs
22     mirage-clock
23     duration
24   ];
26   doCheck = true;
28   meta = alcotest.meta // {
29     description = "Mirage implementation for Alcotest";
30     maintainers = with lib.maintainers; [
31       ulrikstrid
32       anmonteiro
33     ];
34   };