Skip to content

Instantly share code, notes, and snippets.

@snoyberg
Created September 15, 2016 11:21
Haskception
#!/usr/bin/env bash
set -eux
# Useful for using a base Docker image without wget
# apt-get update
# apt-get install wget -y
wget -qO- https://get.haskellstack.org/ | sh
stack setup
echo 'export PATH=$HOME/.local/bin:`stack path --bin-path`' >> ~/.bashrc
stack build alex happy cabal-install
# Now let's get crazy :)
export PATH=$HOME/.local/bin:`stack path --bin-path`
cabal install stack
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment