summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-04-11 21:28:55 +0200
committerPeter Simons <simons@cryp.to>2014-04-11 22:33:11 +0200
commit4604d52df4f89afeaca3093c8f3dfdcea5aac15f (patch)
tree95f21584b659ff5ad31dab748404017c389b452a /pkgs/development/compilers/ghc
parent5b211b9a9b3e025891c0c04e9acaecfca5d00756 (diff)
downloadnixpkgs-4604d52df4f89afeaca3093c8f3dfdcea5aac15f.tar
nixpkgs-4604d52df4f89afeaca3093c8f3dfdcea5aac15f.tar.gz
nixpkgs-4604d52df4f89afeaca3093c8f3dfdcea5aac15f.tar.bz2
nixpkgs-4604d52df4f89afeaca3093c8f3dfdcea5aac15f.tar.lz
nixpkgs-4604d52df4f89afeaca3093c8f3dfdcea5aac15f.tar.xz
nixpkgs-4604d52df4f89afeaca3093c8f3dfdcea5aac15f.tar.zst
nixpkgs-4604d52df4f89afeaca3093c8f3dfdcea5aac15f.zip
GHC version 7.8.1 has been deprecated because of a serious bug.
We'll have version 7.8.2 out soon.

http://www.haskell.org/pipermail/ghc-devs/2014-April/004605.html
http://www.haskell.org/pipermail/ghc-devs/2014-April/004616.html
Diffstat (limited to 'pkgs/development/compilers/ghc')
-rw-r--r--pkgs/development/compilers/ghc/7.8.2.nix (renamed from pkgs/development/compilers/ghc/7.8.1.nix)6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/ghc/7.8.1.nix b/pkgs/development/compilers/ghc/7.8.2.nix
index c007eb23da8..8200c8c759e 100644
--- a/pkgs/development/compilers/ghc/7.8.1.nix
+++ b/pkgs/development/compilers/ghc/7.8.2.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, ghc, perl, gmp, ncurses }:
 
 stdenv.mkDerivation rec {
-  version = "7.8.1";
+  version = "7.8.2";
   name = "ghc-${version}";
 
   src = fetchurl {
-    url = "http://www.haskell.org/ghc/dist/7.8.1/${name}-src.tar.xz";
-    sha256 = "1j4b7ap87vbwqvf8ck1ksrldw2w626f50w20gs4klm6jpvz66xp0";
+    url = "http://www.haskell.org/ghc/dist/7.8.2/${name}-src.tar.xz";
+    sha256 = "15kyz98zq22sgwkzy2bkx0yz98qkrzgdigz919vafd7fxnkf3la5";
   };
 
   buildInputs = [ ghc perl gmp ncurses ];