Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 22 lines 441 B view raw
1{ re, reason, cli, file-context-printer, pastel, ... }: 2 3{ 4 pname = "rely"; 5 6 nativeBuildInputs = [ 7 reason 8 ]; 9 10 propagatedBuildInputs = [ 11 re 12 cli 13 file-context-printer 14 pastel 15 ]; 16 17 meta = { 18 description = "A Jest-inspired testing framework for native OCaml/Reason"; 19 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/rely"; 20 homepage = "https://reason-native.com/docs/rely/"; 21 }; 22}