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

{
  pname = "refmterr";

  nativeBuildInputs = [
    atdgen
    reason
  ];

  propagatedBuildInputs = [
    atdgen
    re
    pastel
  ];

  meta = {
    description = "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/";
  };
}