@jwaldmann thanks for the help. i was able to get the following modifications added to the top of my boot file and load tidal with no errors. i went ahead and removed the Data.List
imported via :m
module, as well.
:set -XOverloadedStrings
:set prompt ""
import Sound.Tidal.Context
import Sound.Tidal.Bjorklund (bjorklund)
import qualified Data.List as L
import Data.List hiding (union)
import System.IO (hSetEncoding, stdout, utf8)
hSetEncoding stdout utf8
:m + Data.Maybe
:m + Sound.Tidal.Utils
it didn't like any of the various ways i tried calling into scope L.inits
or L.tails
. i checked this page in the docs but it doesn't quite specify the syntax required.