├── README.md ├── bin ├── compile ├── detect └── release ├── contribs └── icu.patch └── img ├── haskell.png └── heroku.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begriffs/heroku-buildpack-ghc/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begriffs/heroku-buildpack-ghc/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begriffs/heroku-buildpack-ghc/HEAD/bin/detect -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "--- {}" 4 | -------------------------------------------------------------------------------- /contribs/icu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begriffs/heroku-buildpack-ghc/HEAD/contribs/icu.patch -------------------------------------------------------------------------------- /img/haskell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begriffs/heroku-buildpack-ghc/HEAD/img/haskell.png -------------------------------------------------------------------------------- /img/heroku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/begriffs/heroku-buildpack-ghc/HEAD/img/heroku.png --------------------------------------------------------------------------------