gcc5: Use 5.2 snapshot to fix bugs noticed in syslinux and chromium with gcc5.1

This commit is contained in:
William A. Kennington III 2015-07-09 10:30:55 -07:00
parent ed0d387a6d
commit b477600cc0

View File

@ -57,7 +57,7 @@ assert langGo -> langCC;
with stdenv.lib;
with builtins;
let version = "5.1.0";
let version = "5.2.0-RC-20150707";
# Whether building a cross-compiler for GNU/Hurd.
crossGNU = cross != null && cross.config == "i586-pc-gnu";
@ -209,8 +209,8 @@ stdenv.mkDerivation ({
builder = ../builder.sh;
src = fetchurl {
url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2";
sha256 = "1bd5vj4px3s8nlakbgrh38ynxq4s654m6nxz7lrj03mvkkwgvnmp";
url = "http://mirrors-usa.go-parts.com/gcc/snapshots/${version}/gcc-${version}.tar.bz2";
sha256 = "1bjdpybw5gk58n737wzy9c0nna9pdqf9177pmb94icyc8qgy0a7z";
};
inherit patches;