summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reason-native/refmterr.nix
blob: b4d6708467f0d77ee49b7cbf664572715bfb9753 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ atdgen, re, reason, pastel, ... }:

{
  pname = "refmterr";

  nativeBuildInputs = [
    reason
  ];

  propagatedBuildInputs = [
    atdgen
    re
    pastel
  ];

  meta = {
    description = "An error formatter tool for Reason and OCaml. Takes raw error output from compiler and converts to pretty output";
    downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/refmterr";
    homepage = "https://reason-native.com/docs/refmterr/";
  };
}