Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 re, 5 reason, 6 cli, 7 file-context-printer, 8 pastel, 9 src, 10}: 11 12buildDunePackage { 13 inherit src; 14 15 pname = "rely"; 16 version = "4.0.0-unstable-2024-05-07"; 17 18 nativeBuildInputs = [ 19 reason 20 ]; 21 22 propagatedBuildInputs = [ 23 re 24 cli 25 file-context-printer 26 pastel 27 ]; 28 29 meta = { 30 description = "Jest-inspired testing framework for native OCaml/Reason"; 31 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/rely"; 32 homepage = "https://reason-native.com/docs/rely/"; 33 license = lib.licenses.mit; 34 maintainers = [ ]; 35 }; 36}