https://github.com/dimchansky/docker-centos6-haskell
Haskell on CentOS 6 Docker
https://github.com/dimchansky/docker-centos6-haskell
Last synced: 5 months ago
JSON representation
Haskell on CentOS 6 Docker
- Host: GitHub
- URL: https://github.com/dimchansky/docker-centos6-haskell
- Owner: dimchansky
- Created: 2015-03-29T16:32:11.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-30T12:46:07.000Z (about 11 years ago)
- Last Synced: 2025-04-04T00:43:32.487Z (about 1 year ago)
- Size: 113 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Haskell for CentOS 6
--------------------
## Contents
This image ships a minimal Haskell toolchain with the following packages installed to
`/opt/{name}/{version}` and added to the `PATH`:
| package | version |
|-----------------|------------|
| `alex` | `3.1.4` |
| `cabal-install` | `1.22.2.0` |
| `happy` | `1.19.5` |
| `c2hs` | `0.25.1` |
| `ghc` | `7.8.4` |
## Usage
* Start an interactive interpreter session with `ghci`:
```
$ docker run -it --rm dimchansky/centos6-haskell:7.8.4
GHCi, version 7.8.4: http://www.haskell.org/ghc/ :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Prelude>
```