nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 atdgen,
5 junit,
6 re,
7 reason,
8 pastel,
9 rely,
10 src,
11}:
12
13buildDunePackage {
14 inherit src;
15
16 pname = "rely-junit-reporter";
17 version = "1.0.0-unstable-2024-05-07";
18
19 nativeBuildInputs = [
20 reason
21 ];
22
23 buildInputs = [
24 atdgen
25 ];
26
27 propagatedBuildInputs = [
28 junit
29 re
30 pastel
31 rely
32 ];
33
34 meta = {
35 description = "Tool providing JUnit Reporter for Rely Testing Framework";
36 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/rely-junit-reporter";
37 homepage = "https://reason-native.com/docs/rely/";
38 license = lib.licenses.mit;
39 maintainers = [ ];
40 };
41}