When installing OCaml packages via esy
(instead of opam
), which package.json
entry is needed to install a specific OCaml variant, such as "4.08.0+fp+flambda" instead of "4.08.0"?
I tried several variants of the following, which does not work:
{
"dependencies": {
"ocaml": "4.08.0+fp+flambda",
...
}
}
Error message:
No package matching:
ocaml@=4.8.0+fp
Versions available:
ocaml@4.8.1000
ocaml@4.8.0
ocaml@4.7.1004
...