From 45e9c9d63209cb05fa9670bb04d61ad5c4171d23 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sun, 16 Jul 2017 07:24:03 +0100 Subject: [PATCH] stack, site: update stack yaml files, sync with download page [ci skip] --- site/download.md | 8 +++++--- stack-ghc7.10.yaml | 35 ++++++++++------------------------- stack-ghc7.8.yaml.old | 25 ------------------------- stack-ghc8.0.1.yaml | 16 ++++++++++++++++ stack.yaml | 10 +++++----- 5 files changed, 36 insertions(+), 58 deletions(-) delete mode 100644 stack-ghc7.8.yaml.old create mode 100644 stack-ghc8.0.1.yaml diff --git a/site/download.md b/site/download.md index 3a1a115ff..db2418712 100644 --- a/site/download.md +++ b/site/download.md @@ -50,7 +50,7 @@ You have to build it, but this is relatively easy: 2. **`stack install --resolver lts-8 hledger-lib-1.3 hledger-1.3 [hledger-ui-1.3] [hledger-web-1.3] [hledger-api-1.3]`**\ \ - This command installs the specified hledger packages (and required haskell libraries and tools) from the latest [Stackage LTS](https://www.stackage.org) snapshot (and Hackage). + This command installs the specified hledger packages (and required haskell libraries and tools) from the latest [Stackage LTS](https://www.stackage.org) snapshot (and if needed, [Hackage](http://hackage.haskell.org)). It is reliable, but can take significant time (minutes to hours) and space (megabytes to a gigabyte) depending on your connection, machine and past installations. You can add `--dry-run` to see what it plans to do, and kill/restart it without losing progress.\ You can omit the bracketed packages to save time, and maybe install them later. If you include them, don't type the brackets. @@ -70,9 +70,11 @@ You have to build it, but this is relatively easy: (except on Mac Sierra which [requires at least GHC 8.0.2/lts-8](https://ghc.haskell.org/trac/ghc/ticket/12479)):\ `stack install --resolver lts-7 hledger-lib-1.3 hledger-1.3 hledger-ui-1.3 hledger-web-1.3 hledger-api-1.3 brick-0.19 vty-5.15.1 data-clist-0.1.2.0` # GHC 8.0.1 \ `stack install --resolver lts-6 hledger-lib-1.3 hledger-1.3 hledger-ui-1.3 hledger-web-1.3 hledger-api-1.3 megaparsec-5.3.1 brick-0.19 vty-5.15.1 data-clist-0.1.2.0 text-zipper-0.10` # GHC 7.10.3 \ + -Now you should be able to run `hledger --version` and see a version similar to the above -(and `hledger-ui --version`, `hledger-web --version` etc. if you installed those). +Now you should be able to run `hledger --version` +(and `hledger-ui --version`, `hledger-web --version` etc. if you installed those) +and see the version you just installed.