Open danoctavian opened 8 years ago
I can get dash-haskell
to compile with stack by doing:
# first checkout dash-haskell from GitHub; cd into directory; then...
stack init
# ... stack futzed around for a while but settled on lts-6.27 for dependencies
# now build the project:
stack build
# to install to ~/.local/bin:
stack install
I'm not sure of the cause of your particular error, but <>
is very likely from Data.Monoid
. You could try adding:
import Data.Monoid ((<>))
to the imports of src/Main.hs
(but I think you may have more success with stack).
cabal install fails with the following (cabal 1.24):