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

{
  pname = "rely";

  buildInputs = [
    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/";
  };
}