nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / rely-junit-reporter.nix
blob43febed9c932cc5d05cf61f6960723f9c6241021
2   lib,
3   buildDunePackage,
4   atdgen,
5   junit,
6   re,
7   reason,
8   pastel,
9   rely,
10   src,
13 buildDunePackage {
14   inherit src;
16   pname = "rely-junit-reporter";
17   version = "1.0.0-unstable-2024-05-07";
19   nativeBuildInputs = [
20     reason
21   ];
23   buildInputs = [
24     atdgen
25   ];
27   propagatedBuildInputs = [
28     junit
29     re
30     pastel
31     rely
32   ];
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   };