summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/junit/ounit.nix
blob: c7d53ecc4f5085c558b3d839abb7cace7396e55a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildDunePackage, junit, ounit }:

buildDunePackage ({
  pname = "junit_ounit";

  inherit (junit) src version meta;
  duneVersion = "3";

  propagatedBuildInputs = [
    junit
    ounit
  ];

  doCheck = true;
})