summary refs log tree commit diff
path: root/pkgs/top-level/haskell-packages.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-12-27 20:58:23 +0100
committerPeter Simons <simons@cryp.to>2019-12-27 20:58:23 +0100
commit525b8cd3f6c71e89eb6ea450881e233771b1fc9f (patch)
treee959b5641f9747e62b97bef41985df33131e2fa4 /pkgs/top-level/haskell-packages.nix
parent56f1127a427f17fba869ea20d947c320e1ccc907 (diff)
downloadnixpkgs-525b8cd3f6c71e89eb6ea450881e233771b1fc9f.tar
nixpkgs-525b8cd3f6c71e89eb6ea450881e233771b1fc9f.tar.gz
nixpkgs-525b8cd3f6c71e89eb6ea450881e233771b1fc9f.tar.bz2
nixpkgs-525b8cd3f6c71e89eb6ea450881e233771b1fc9f.tar.lz
nixpkgs-525b8cd3f6c71e89eb6ea450881e233771b1fc9f.tar.xz
nixpkgs-525b8cd3f6c71e89eb6ea450881e233771b1fc9f.tar.zst
nixpkgs-525b8cd3f6c71e89eb6ea450881e233771b1fc9f.zip
ghc: add 8.10.1-alpha2
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 ce4aef3aecb..c4c18b264f1 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -68,6 +68,12 @@ in {
       buildLlvmPackages = buildPackages.llvmPackages_7;
       llvmPackages = pkgs.llvmPackages_7;
     };
+    ghc8101 = callPackage ../development/compilers/ghc/8.10.1.nix {
+      bootPkgs = packages.ghc863Binary;
+      inherit (buildPackages.python3Packages) sphinx;
+      buildLlvmPackages = buildPackages.llvmPackages_9;
+      llvmPackages = pkgs.llvmPackages_9;
+    };
     ghcHEAD = callPackage ../development/compilers/ghc/head.nix {
       bootPkgs = packages.ghc863Binary;
       inherit (buildPackages.python3Packages) sphinx;
@@ -131,6 +137,11 @@ in {
       ghc = bh.compiler.ghc882;
       compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.8.x.nix { };
     };
+    ghc8101 = callPackage ../development/haskell-modules {
+      buildHaskellPackages = bh.packages.ghc8101;
+      ghc = bh.compiler.ghc8101;
+      compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { };
+    };
     ghcHEAD = callPackage ../development/haskell-modules {
       buildHaskellPackages = bh.packages.ghcHEAD;
       ghc = bh.compiler.ghcHEAD;