summary refs log tree commit diff
path: root/pkgs/top-level/haskell-packages.nix
diff options
context:
space:
mode:
authorKosyrev Serge <serge.kosyrev@iohk.io>2018-01-17 04:57:27 +0300
committerKosyrev Serge <serge.kosyrev@iohk.io>2018-01-19 16:06:02 +0300
commit8d027c1113efbe701ae10345dadf5cdcfc07a8db (patch)
treedf2848925e6f39004d1eab29ec91e6fd63f0196f /pkgs/top-level/haskell-packages.nix
parentd2d1a2dfbabaf723ebc2102a3c7baa5138303bc2 (diff)
downloadnixlib-8d027c1113efbe701ae10345dadf5cdcfc07a8db.tar
nixlib-8d027c1113efbe701ae10345dadf5cdcfc07a8db.tar.gz
nixlib-8d027c1113efbe701ae10345dadf5cdcfc07a8db.tar.bz2
nixlib-8d027c1113efbe701ae10345dadf5cdcfc07a8db.tar.lz
nixlib-8d027c1113efbe701ae10345dadf5cdcfc07a8db.tar.xz
nixlib-8d027c1113efbe701ae10345dadf5cdcfc07a8db.tar.zst
nixlib-8d027c1113efbe701ae10345dadf5cdcfc07a8db.zip
ghc841: GHC 8.4.1: nix-shell -p haskell.compiler.ghc841
Diffstat (limited to 'pkgs/top-level/haskell-packages.nix')
-rw-r--r--pkgs/top-level/haskell-packages.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index cba1f9a54a24..0ecb52097798 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -78,6 +78,12 @@ in rec {
       sphinx = pkgs.python3Packages.sphinx;
       selfPkgs = packages.ghc822;
     };
+    ghc841 = callPackage ../development/compilers/ghc/8.4.1.nix rec {
+      bootPkgs = packages.ghc821Binary;
+      inherit (bootPkgs) alex happy;
+      inherit buildPlatform targetPlatform;
+      selfPkgs = packages.ghc841;
+    };
     ghcHEAD = callPackage ../development/compilers/ghc/head.nix rec {
       bootPkgs = packages.ghc821Binary;
       inherit (bootPkgs) alex happy;
@@ -136,6 +142,10 @@ in rec {
       ghc = compiler.ghc821Binary;
       compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.2.x.nix { };
     };
+    ghc841 = callPackage ../development/haskell-modules {
+      ghc = compiler.ghc841;
+      compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.4.x.nix { };
+    };
     ghcHEAD = callPackage ../development/haskell-modules {
       ghc = compiler.ghcHEAD;
       compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { };