Skip to main content
Example Repo

Adding Haskell and Stack to your Project

devbox add stack cabal-install zlib hpack, or add the following to your devbox.json
  "packages": [
    "stack@latest",
    "cabal-install@latest",
    "zlib@latest",
    "hpack@latest"
  ]
This will install GHC, and the Haskell Tool Stack in your Devbox Shell at their latest version. You can find other installable versions of Stack by running devbox search <pkg>. Edit this page
I