summary refs log tree commit diff
path: root/pkgs/top-level/haskell-packages.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-10-31 19:56:28 +0100
committerPeter Simons <simons@cryp.to>2017-11-04 20:02:31 +0100
commita09460b82765e22fcb5c2583084d9bd53a945f0e (patch)
treecf630f11c09bf23658f8b15ac377f883991017ff /pkgs/top-level/haskell-packages.nix
parent9e0159c04cd38d07fb8c976d868fa0b8efb8ab59 (diff)
downloadnixlib-a09460b82765e22fcb5c2583084d9bd53a945f0e.tar
nixlib-a09460b82765e22fcb5c2583084d9bd53a945f0e.tar.gz
nixlib-a09460b82765e22fcb5c2583084d9bd53a945f0e.tar.bz2
nixlib-a09460b82765e22fcb5c2583084d9bd53a945f0e.tar.lz
nixlib-a09460b82765e22fcb5c2583084d9bd53a945f0e.tar.xz
nixlib-a09460b82765e22fcb5c2583084d9bd53a945f0e.tar.zst
nixlib-a09460b82765e22fcb5c2583084d9bd53a945f0e.zip
ghc: add 8.2.2-rc2
Diffstat (limited to 'pkgs/top-level/haskell-packages.nix')
-rw-r--r--pkgs/top-level/haskell-packages.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index b3bbb0d5b643..111893f93b78 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -78,6 +78,13 @@ in rec {
       sphinx = pkgs.python3Packages.sphinx;
       selfPkgs = packages.ghc821;
     };
+    ghc822 = callPackage ../development/compilers/ghc/8.2.2.nix rec {
+      bootPkgs = packages.ghc802;
+      inherit (bootPkgs) hscolour alex happy;
+      inherit buildPlatform targetPlatform;
+      sphinx = pkgs.python3Packages.sphinx;
+      selfPkgs = packages.ghc822;
+    };
     ghcHEAD = callPackage ../development/compilers/ghc/head.nix rec {
       bootPkgs = packages.ghc802;
       inherit (bootPkgs) alex happy;
@@ -166,6 +173,10 @@ in rec {
       ghc = compiler.ghc821;
       compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.2.x.nix { };
     };
+    ghc822 = callPackage ../development/haskell-modules {
+      ghc = compiler.ghc822;
+      compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.2.x.nix { };
+    };
     ghcHEAD = callPackage ../development/haskell-modules {
       ghc = compiler.ghcHEAD;
       compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { };