about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reason-native/rely.nix
blob: e3ca4b9ad5e9c5832aba1a80237a37b3a6b3d2f6 (plain) (blame)
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
{ 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 = with lib.maintainers; [ ];
  };
}