Convert Cabal manifests into hpack's package.yamls.
git clone https://github.com/yamadapc/hpack-convert
cd hpack-convert
stack install
# Inside a directory with a .cabal file, run:
hpack-convert
# This will convert your .cabal file into a `package.yaml`
There's a simple web-service running hpack-convert
on a free Heroku dyno, if
it's awake, this command should convert your cabal file:
curl -F "cabalfile=@./`echo *.cabal`" https://hpack-convert.herokuapp.com
Source-code at https://github.com/yamadapc/hpack-convert-api
MIT