mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 17:04:42 +00:00
ea780bcedb
Upstream doesn't use releases, branches, or tags, so this is the most recent commit: 20b1997b64
* ocamlPackages.reason-native.cli: init at 0.0.1-alpha-unstable-2024-05-07
* ocamlPackages.reason-native.console: 2022-08-31-a0ddab6 -> 0.1.0-unstable-2024-05-07
* ocamlPackages.reason-native.dir: 2022-08-31-a0ddab6 -> 0.0.1-unstable-2024-05-07
* ocamlPackages.reason-native.file-context-printer: 2022-08-31-a0ddab6 -> 0.0.3-unstable-2024-05-07
* ocamlPackages.reason-native.fp: 2022-08-31-a0ddab6 -> 0.0.1-unstable-2024-05-07
* ocamlPackages.reason-native.frame: init at 0.0.1-unstable-2024-05-07
* ocamlPackages.reason-native.fs: init at 0.0.2-unstable-2024-05-07
* ocamlPackages.reason-native.pastel: 2022-08-31-a0ddab6 -> 0.3.0-unstable-2024-05-07
* ocamlPackages.reason-native.pastel-console: 2022-08-31-a0ddab6 -> 0.0.0-unstable-2024-05-07
* ocamlPackages.reason-native.qcheck-rely: 2022-08-31-a0ddab6 -> 1.0.2-unstable-2024-05-07
* ocamlPackages.reason-native.refmterr: 2022-08-31-a0ddab6 -> 3.3.0-unstable-2024-05-07
* ocamlPackages.reason-native.rely: 2022-08-31-a0ddab6 -> 4.0.0-unstable-2024-05-07
* ocamlPackages.reason-native.rely-junit-reporter: 2022-08-31-a0ddab6 -> 1.0.0-unstable-2024-05-07
* ocamlPackages.reason-native.unicode: init at 0.0.0-unstable-2024-05-07
* ocamlPackages.reason-native.unicode-config: init at 0.0.0-unstable-2024-05-07
* ocamlPackages.reason-native.utf8: init at 0.1.0-unstable-2024-05-07
The version numbers are taken from upstream's `<package>.json` file.
I also fixed and updated `ocamlPackages.reason-native.console.tests` so that it builds and no longer includes its `default.nix` file.
28 lines
649 B
Nix
28 lines
649 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 = with lib.maintainers; [ ];
|
|
};
|
|
}
|