Specify github url for dependency in cabal file

Currently the HDBC-mysql package is broken for me. The fix is ​​in this plug . How can I indicate that I want cabal to create HDBC-mysql from this fork?

+4
source share
1 answer

If you just want everything to be up and running, just check and create it manually.

> git clone https://github.com/markus7/hdbc-mysql.git
> cd hdbc-mysql
> cabal install

This should keep things going until new changes are rolled over to Hackage.

(note. You may need to mess with the dependencies to get the project to use this version ... But I would just try a simple installation first and see if it works).

0
source

All Articles