Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit 243326d

Browse files
authored
Merge pull request #1168 from power-fungus/build-simplifications
Build simplifications
2 parents 47b5281 + b51def0 commit 243326d

File tree

2 files changed

+274
-202
lines changed

2 files changed

+274
-202
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ then it means you have the command in PATH.
153153

154154
On Linux you will need install a couple of extra libraries (for Unicode ([ICU](http://site.icu-project.org/)) and [NCURSES](https://www.gnu.org/software/ncurses/)):
155155

156-
**Debian/Ubuntu**:
156+
**Debian/Ubuntu**:
157157

158158
```bash
159159
sudo apt install libicu-dev libtinfo-dev libgmp-dev
@@ -194,22 +194,22 @@ Available commands can be seen with:
194194
stack ./install.hs help
195195
```
196196

197-
Remember, this will take time to download a Stackage-LTS and an appropriate GHC. However, afterwards all commands should work as expected.
197+
Remember, this will take time to download a Stackage-LTS and an appropriate GHC. However, afterwards all commands should work as expected.
198198

199199
##### Install specific GHC Version
200200

201201
Install **Nightly** (and hoogle docs):
202202

203203
```bash
204204
stack ./install.hs hie-8.6.4
205-
stack ./install.hs build-doc-8.6.4
205+
stack ./install.hs build-docs
206206
```
207207

208208
Install **LTS** (and hoogle docs):
209209

210210
```bash
211211
stack ./install.hs hie-8.4.4
212-
stack ./install.hs build-doc-8.4.4
212+
stack ./install.hs build-docs
213213
```
214214

215215
The Haskell IDE Engine can also be built with `cabal new-build` instead of `stack build`.
@@ -237,7 +237,7 @@ If your desired ghc has been found, you use it to install Haskell IDE Engine.
237237

238238
```bash
239239
stack install.hs cabal-hie-8.4.4
240-
stack install.hs cabal-build-doc-8.4.4
240+
stack install.hs cabal-build-docs
241241
```
242242

243243
To install HIE for all GHC versions that are present on your system, use:
@@ -589,11 +589,11 @@ These builds have a dependency on [homebrew](https://brew.sh)'s `gmp` library. I
589589

590590
### cannot satisfy -package-id \<package\>
591591

592-
#### Is \<package\> base-x?
592+
#### Is \<package\> base-x?
593593
Make sure that you are running the correct version of hie for your version of ghc, or check out hie-wrapper.
594594

595595
#### Is there a hash (#) after \<package\>?
596596
Delete any `.ghc.environment*` files in your project root and try again. (At the time of writing, cabal new-style projects are not supported with ghc-mod)
597597

598598
#### Otherwise
599-
Try running `cabal update`.
599+
Try running `cabal update`.

0 commit comments

Comments
 (0)