nixpkgs/pkgs/development/ocaml-modules/reason-native/refmterr.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

28 lines
627 B
Nix

{ lib, buildDunePackage, atdgen, re, reason, pastel, src }:
buildDunePackage {
inherit src;
pname = "refmterr";
version = "3.3.0-unstable-2024-05-07";
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/";
license = lib.licenses.mit;
maintainers = [ ];
};
}