forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / rely-junit-reporter.nix
blob92743f4c2ecbacf8f03f47c4aefee4430ebb20be
1 { lib, buildDunePackage, atdgen, junit, re, reason, pastel, rely, src }:
3 buildDunePackage {
4   inherit src;
6   pname = "rely-junit-reporter";
7   version = "1.0.0-unstable-2024-05-07";
9   nativeBuildInputs = [
10     reason
11   ];
13   buildInputs = [
14     atdgen
15   ];
17   propagatedBuildInputs = [
18     junit
19     re
20     pastel
21     rely
22   ];
24   meta = {
25     description = "Tool providing JUnit Reporter for Rely Testing Framework";
26     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/rely-junit-reporter";
27     homepage = "https://reason-native.com/docs/rely/";
28     license = lib.licenses.mit;
29     maintainers = [ ];
30   };