summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-01-07 23:50:56 +0100
committerPeter Simons <simons@cryp.to>2015-01-07 23:58:23 +0100
commitc1c0b4bbfdbe6fd49749c666255109f97fc1665b (patch)
tree037e2912b0f3158843f687b9755159df90eec180
parent406fefdf835e9bf2740dbb86dbaabd5e088ecc15 (diff)
downloadnixpkgs-c1c0b4bbfdbe6fd49749c666255109f97fc1665b.tar
nixpkgs-c1c0b4bbfdbe6fd49749c666255109f97fc1665b.tar.gz
nixpkgs-c1c0b4bbfdbe6fd49749c666255109f97fc1665b.tar.bz2
nixpkgs-c1c0b4bbfdbe6fd49749c666255109f97fc1665b.tar.lz
nixpkgs-c1c0b4bbfdbe6fd49749c666255109f97fc1665b.tar.xz
nixpkgs-c1c0b4bbfdbe6fd49749c666255109f97fc1665b.tar.zst
nixpkgs-c1c0b4bbfdbe6fd49749c666255109f97fc1665b.zip
ghc: bump HEAD compiler to 7.10.1-rc1
-rw-r--r--pkgs/development/compilers/ghc/head.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix
index 22f42bd90b5..c79cdfbe342 100644
--- a/pkgs/development/compilers/ghc/head.nix
+++ b/pkgs/development/compilers/ghc/head.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, ghc, perl, gmp, ncurses, happy, alex }:
 
 stdenv.mkDerivation rec {
-  version = "7.9.20141217";
+  version = "7.10.0.20141222";
   name = "ghc-${version}";
 
   src = fetchurl {
-    url = "http://deb.haskell.org/dailies/2014-12-17/ghc_${version}.orig.tar.bz2";
-    sha256 = "1yfdi9r07aqbnv6xfdhs6cpj0y0yjdr03l5sa4dv0j1xs3lh1wkv";
+    url = "https://downloads.haskell.org/~ghc/7.10.1-rc1/ghc-7.10.0.20141222-src.tar.xz";
+    sha256 = "0nncvvwksqqz1d991jbag3b4174i275nn0psadriq5hi3px11dkl";
   };
 
   buildInputs = [ ghc perl ncurses happy alex ];