summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2020-02-21 11:19:10 +0100
committerPeter Simons <simons@cryp.to>2020-02-28 20:31:25 +0100
commit5bcd07a07dae5706f3fabadb5a4954b262222826 (patch)
treeb02bd211c2446deda74ad63fddfec48c1266826a /doc
parentef30908eef916f6430a0b290c47703c238576cc2 (diff)
downloadnixpkgs-5bcd07a07dae5706f3fabadb5a4954b262222826.tar
nixpkgs-5bcd07a07dae5706f3fabadb5a4954b262222826.tar.gz
nixpkgs-5bcd07a07dae5706f3fabadb5a4954b262222826.tar.bz2
nixpkgs-5bcd07a07dae5706f3fabadb5a4954b262222826.tar.lz
nixpkgs-5bcd07a07dae5706f3fabadb5a4954b262222826.tar.xz
nixpkgs-5bcd07a07dae5706f3fabadb5a4954b262222826.tar.zst
nixpkgs-5bcd07a07dae5706f3fabadb5a4954b262222826.zip
haskellPackages: update default compiler from ghc-8.6.5 to 8.8.2 (LTS-15.x)
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/haskell.section.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/languages-frameworks/haskell.section.md b/doc/languages-frameworks/haskell.section.md
index b485ec583ec..8cab6208910 100644
--- a/doc/languages-frameworks/haskell.section.md
+++ b/doc/languages-frameworks/haskell.section.md
@@ -84,18 +84,18 @@ nix-env -qaP -A nixos.haskellPackages
 nix-env -iA nixos.haskellPackages.cabal-install
 ```
 
-Our current default compiler is GHC 8.6.x and the `haskellPackages` set
+Our current default compiler is GHC 8.8.x and the `haskellPackages` set
 contains packages built with that particular version. Nixpkgs contains the last
 three major releases of GHC and there is a whole family of package sets
 available that defines Hackage packages built with each of those compilers,
 too:
 ```shell
-nix-env -f "<nixpkgs>" -qaP -A haskell.packages.ghc844
-nix-env -f "<nixpkgs>" -qaP -A haskell.packages.ghc882
+nix-env -f "<nixpkgs>" -qaP -A haskell.packages.ghc865
+nix-env -f "<nixpkgs>" -qaP -A haskell.packages.ghc8101
 ```
 
 The name `haskellPackages` is really just a synonym for
-`haskell.packages.ghc865`, because we prefer that package set internally and
+`haskell.packages.ghc882`, because we prefer that package set internally and
 recommend it to our users as their default choice, but ultimately you are free
 to compile your Haskell packages with any GHC version you please. The following
 command displays the complete list of available compilers: