Created
December 24, 2018 09:09
-
-
Save netom/d7fb531bb12ae7ce435fe055f9772400 to your computer and use it in GitHub Desktop.
Install atom-haskell dependencies with stack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cat > ~/.stack/global-project/stack.yaml <<END | |
# This is the implicit global project's config file, which is only used when | |
# 'stack' is run outside of a real project. Settings here do _not_ act as | |
# defaults for all projects. To change stack's default settings, edit | |
# '/home/netom/.stack/config.yaml' instead. | |
# | |
# For more information about stack's configuration, see | |
# http://docs.haskellstack.org/en/stable/yaml_configuration/ | |
# | |
packages: [] | |
resolver: lts-9.21 | |
END | |
stack install base ghc-mod hoogle hasktags-0.69.5 pointfree pointful cabal-install hindent | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment