summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/junit/alcotest.nix
blob: eb750b4372a731728b2974ab22bb09c671e5d85d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  buildDunePackage,
  lib,
  ocaml,
  junit,
  alcotest,
}:

buildDunePackage {
  pname = "junit_alcotest";

  inherit (junit) src version meta;

  propagatedBuildInputs = [
    junit
    alcotest
  ];

  doCheck = lib.versionAtLeast ocaml.version "4.12";
}