summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-02-12 20:15:09 +0100
committerPeter Simons <simons@cryp.to>2015-02-12 20:15:56 +0100
commit15416dd2eca1bc3d214649b0f034e40a1daee2ab (patch)
treebf2ac47d101769b839919c82f5d9450ed426f9f5 /pkgs/top-level
parentcf1550cbbf98613a59212c3bd0a5b813a753ce77 (diff)
downloadnixlib-15416dd2eca1bc3d214649b0f034e40a1daee2ab.tar
nixlib-15416dd2eca1bc3d214649b0f034e40a1daee2ab.tar.gz
nixlib-15416dd2eca1bc3d214649b0f034e40a1daee2ab.tar.bz2
nixlib-15416dd2eca1bc3d214649b0f034e40a1daee2ab.tar.lz
nixlib-15416dd2eca1bc3d214649b0f034e40a1daee2ab.tar.xz
nixlib-15416dd2eca1bc3d214649b0f034e40a1daee2ab.tar.zst
nixlib-15416dd2eca1bc3d214649b0f034e40a1daee2ab.zip
Revert "Build GHC HEAD from git checkout".
This reverts commit 52c8d7c4ab0b2b2c97faa848b98dfc0ae9b69d7b. The new
expression doesn't compile: http://hydra.nixos.org/build/19594431/nixlog/1/raw.
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/haskell-ng.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/haskell-ng.nix b/pkgs/top-level/haskell-ng.nix
index cdf96879d6ac..220fca90a53f 100644
--- a/pkgs/top-level/haskell-ng.nix
+++ b/pkgs/top-level/haskell-ng.nix
@@ -18,7 +18,7 @@ rec {
     ghc763 = callPackage ../development/compilers/ghc/7.6.3.nix { ghc = compiler.ghc704Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
     ghc784 = callPackage ../development/compilers/ghc/7.8.4.nix { ghc = compiler.ghc742Binary; gmp = pkgs.gmp.override { withStatic = true; }; };
     ghc7101 = callPackage ../development/compilers/ghc/7.10.1.nix { ghc = compiler.ghc784; gmp = pkgs.gmp.override { withStatic = true; }; };
-    ghcHEAD = callPackage ../development/compilers/ghc/head.nix { inherit (packages.ghc784) ghc happy alex; gmp = pkgs.gmp.override { withStatic = true; }; };
+    ghcHEAD = callPackage ../development/compilers/ghc/head.nix { ghc = compiler.ghc784; gmp = pkgs.gmp.override { withStatic = true; }; };
     ghc = compiler.ghc784;
 
   };