Hello,
Is their a recommended way of pinning the version of dhall-haskell inside the repo with the Dhall source code? I have two requirements:
- ensure all team members are running the same version of the compiler (that is compatible with the source code language version).
- ability to easily install different versions of the compiler on the same system (e.g. if we have multiple repos with Dhall source code targeting different language versions).
Basically, I’m looking for something like rbenv
, nodenv
, etc.
Does something like this exist?
I had considered adding a stack.yaml
file to the project and encouraging installation through stack install dhall
, but this will install the binary globally for the user on the system, so this does not help with the second requirement.
Many thanks!