Tidal boot script path

Hello,
After updating my system (Debian testing) and Tidal, the output of ghc-pkg field tidal data-dir has started being /usr/share/tidal, a directory that doesn't exist.
This in turn causes troubles in finding the location of BootTidal.hs, which seems to be canonically located in a subdirectory of ~/.cabal/share/ (but there is no subdirectory corresponding to the last version of Tidal).
Manually creating the corresponding directory and hardcoding such a location in my editor configuration (with the latest version of BootTidal.hs as found on github) results in another error:

<no location info>: error:
    Could not load module ‘Sound.OSC.FD’
    It is a member of the hidden package ‘hosc-0.18.1’.
    You can run ‘:set -package hosc’ to expose it.
    (Note: this unloads all the modules in the current scope.)
    It is a member of the hidden package ‘hosc-0.17’.
    You can run ‘:set -package hosc’ to expose it.
    (Note: this unloads all the modules in the current scope.)

I must confess that I'm at loss concerning what to do from now, so if someone can shed any light on this, I would greatly appreciate it.

Thanks in advance!

When I get these kinds of errors I remove the ~/.cabal and ~/.ghc folders, then run cabal v1-update; cabal v1-install tidal .. The 'v1-' variant of the install is deprecated, but in my experience is a lot more reliable.

It worked, thank you!