You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,14 +32,15 @@ You can also run any `haskellings` command from the project directory using `sta
32
32
Instead of running stack manually, you can use a nix shell to install the dependencies for you.
33
33
To do this, [install Nix](https://nixos.org/guides/install-nix.html).
34
34
35
-
Then, when in the project's root directory, runn `nix-shell`.
35
+
Then, when in the project's root directory, run `stack build`. This is necessary to generate `haskellings.cabal` from `package.yaml` (`hpack` will also work). Then you can run `nix-shell`.
36
+
36
37
After the build process, you should see a bash prompt like this:
37
38
38
39
```shell
39
40
[nix-shell:~]$
40
41
```
41
42
42
-
This shell provides you with an environment that has GHC 8.8.4 and the `haskellings` binary installed and available in your `$PATH` - so you can run `haskellings` and get started!
43
+
This shell provides you with an environment that has GHC 8.10.4 and the `haskellings` binary installed and available in your `$PATH` - so you can run `haskellings` and get started!
43
44
44
45
These dependencies are only available within the `nix-shell`, so don't worry about contaminating your global system with conflicting installations.
0 commit comments