a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
27 lines
487 B
Nix
27 lines
487 B
Nix
{ atdgen, junit, re, reason, pastel, rely, ... }:
|
|
|
|
{
|
|
pname = "rely-junit-reporter";
|
|
|
|
nativeBuildInputs = [
|
|
reason
|
|
];
|
|
|
|
buildInputs = [
|
|
atdgen
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
junit
|
|
re
|
|
pastel
|
|
rely
|
|
];
|
|
|
|
meta = {
|
|
description = "A tool providing JUnit Reporter for Rely Testing Framework";
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/rely-junit-reporter";
|
|
homepage = "https://reason-native.com/docs/rely/";
|
|
};
|
|
}
|