I'm learning Haskell these days. And I a interesting project in Github : https://github.com/tmishima/Hinecraft I clone it , and I want to build it myself and run it. But I encounter with stack-build problems like that
Resolver 'lts-13.0' does not have all the packages to match your requirements.
FTGL not found
- Hinecraft requires -any
GLUtil not found
- Hinecraft requires -any
OpenGLRaw version 3.3.1.0 found
- Hinecraft requires <=2.3.0.0
It looks like these dependencies can not be found in stack , what should I do now ? Should I download these dependencies manually and build them locally? Thanks for help.
the .cabal dependencies code
build-depends:
base , GLFW-b , OpenGL , mtl
, bytestring , array , vector , directory
, process , OpenGLRaw <= 2.3.0.0 , cereal , FTGL
, time , containers , GLUtil , linear , text
, sqlite-simple