1 { buildDunePackage, reason, cppo, utop, makeWrapper }:
5 inherit (reason) version src;
12 propagatedBuildInputs = [ reason utop ];
15 wrapProgram $out/bin/rtop \
16 --prefix PATH : "${utop}/bin" \
17 --prefix CAML_LD_LIBRARY_PATH : "$CAML_LD_LIBRARY_PATH" \
18 --prefix OCAMLPATH : "$OCAMLPATH:$OCAMLFIND_DESTDIR"
21 meta = reason.meta // {
22 description = "Toplevel (or REPL) for Reason, based on utop";