2024-07-01 15:47:52 +00:00
|
|
|
{ lib, buildDunePackage, atdgen, re, reason, pastel, src }:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
inherit src;
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
pname = "refmterr";
|
2024-07-01 15:47:52 +00:00
|
|
|
version = "3.3.0-unstable-2024-05-07";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
nativeBuildInputs = [
|
2023-02-09 11:40:11 +00:00
|
|
|
atdgen
|
2021-06-28 23:13:55 +00:00
|
|
|
reason
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
atdgen
|
|
|
|
re
|
|
|
|
pastel
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Error formatter tool for Reason and OCaml. Takes raw error output from compiler and converts to pretty output";
|
2021-06-28 23:13:55 +00:00
|
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/refmterr";
|
|
|
|
homepage = "https://reason-native.com/docs/refmterr/";
|
2024-07-01 15:47:52 +00:00
|
|
|
license = lib.licenses.mit;
|
2024-07-31 10:19:44 +00:00
|
|
|
maintainers = [ ];
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
}
|