Skip to content

Commit a339757

Browse files
committed
Switched to using GHC 8.4.3
1 parent 9cab3d4 commit a339757

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,7 @@ Because Haskell is a compiled language, most building tools are `nativeBuildInpu
105105
Note that if you want to create a quick and dirty `nix-shell` with GHC and a few packages, just use:
106106

107107
```sh
108-
nix-shell -p 'haskell.packages.ghc822.ghcWithPackages (pkgs: [ pkgs.aeson pkgs.dlist ])'
108+
nix-shell -p 'ghc.ghcWithPackages (pkgs: [ pkgs.aeson pkgs.dlist ])'
109+
# or if you want to specify a version
110+
nix-shell -p 'haskell.packages.ghc843.ghcWithPackages (pkgs: [ pkgs.aeson pkgs.dlist ])'
109111
```

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
pkgs ? import ./pkgs.nix,
3-
haskellPath ? "ghc822"
3+
haskellPath ? "ghc843"
44
}:
55
with pkgs;
66
let

pkgs.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/561866ab17b6b51ec2aa59f8dbd229f9848b1385.tar.gz) {}
1+
import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/4dd9cd3f69e51dcb69d29a88335f06a544b0e508.tar.gz) {}

shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
pkgs ? import ./pkgs.nix,
3-
haskellPath ? "ghc822"
3+
haskellPath ? "ghc843"
44
}:
55
with pkgs;
66
let

0 commit comments

Comments
 (0)