ocamlPackages.alcotest-mirage: init at 1.2.3 (#128601)

This commit is contained in:
Ulrik Strid 2021-07-02 10:50:12 +02:00 committed by GitHub
parent 483be376f7
commit 752035e078
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ lib, buildDunePackage, alcotest, lwt, logs, mirage-clock, duration }:
buildDunePackage {
pname = "alcotest-mirage";
inherit (alcotest) version src useDune2;
propagatedBuildInputs = [ alcotest lwt logs mirage-clock duration ];
doCheck = true;
meta = alcotest.meta // {
description = "Mirage implementation for Alcotest";
maintainers = with lib.maintainers; [ ulrikstrid anmonteiro ];
};
}

View file

@ -22,6 +22,8 @@ let
alcotest-lwt = callPackage ../development/ocaml-modules/alcotest/lwt.nix {};
alcotest-mirage = callPackage ../development/ocaml-modules/alcotest/mirage.nix {};
angstrom = callPackage ../development/ocaml-modules/angstrom { };
angstrom-async = callPackage ../development/ocaml-modules/angstrom-async { };