forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / rely.nix
blobe9870f92b33c05f44680714586cd599ecd05e20d
1 { lib, buildDunePackage, re, reason, cli, file-context-printer, pastel, src }:
3 buildDunePackage {
4   inherit src;
6   pname = "rely";
7   version = "4.0.0-unstable-2024-05-07";
9   nativeBuildInputs = [
10     reason
11   ];
13   propagatedBuildInputs = [
14     re
15     cli
16     file-context-printer
17     pastel
18   ];
20   meta = {
21     description = "Jest-inspired testing framework for native OCaml/Reason";
22     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/rely";
23     homepage = "https://reason-native.com/docs/rely/";
24     license = lib.licenses.mit;
25     maintainers = [ ];
26   };