mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
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
26 lines
487 B
Nix
26 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/";
|
|
};
|
|
}
|