a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
22 lines
441 B
Nix
22 lines
441 B
Nix
{ re, reason, cli, file-context-printer, pastel, ... }:
|
|
|
|
{
|
|
pname = "rely";
|
|
|
|
nativeBuildInputs = [
|
|
reason
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
re
|
|
cli
|
|
file-context-printer
|
|
pastel
|
|
];
|
|
|
|
meta = {
|
|
description = "A Jest-inspired testing framework for native OCaml/Reason";
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/rely";
|
|
homepage = "https://reason-native.com/docs/rely/";
|
|
};
|
|
}
|