nixpkgs/pkgs/development/ocaml-modules/alcotest/lwt.nix

17 lines
299 B
Nix
Raw Normal View History

{ 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";
};
}