summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/reason-native/rely.nix
blob: b53d32b2b0a7c8fe13152931d51214f6a2e11c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  lib,
  buildDunePackage,
  re,
  reason,
  cli,
  file-context-printer,
  pastel,
  src,
}:

buildDunePackage {
  inherit src;

  pname = "rely";
  version = "4.0.0-unstable-2024-05-07";

  nativeBuildInputs = [
    reason
  ];

  propagatedBuildInputs = [
    re
    cli
    file-context-printer
    pastel
  ];

  meta = {
    description = "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/";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}