From 4cf6fef6fc1d27a74d346c9fc81c063b66dcb2e4 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sat, 12 Dec 2015 14:41:53 +0100 Subject: [PATCH] pkgs.gcc5: 5.2.0 -> 5.3.0 gcc-5.3.0 is a bug-fix release from the GCC 5 branch. See https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00002.html --- pkgs/development/compilers/gcc/5/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/gcc/5/default.nix b/pkgs/development/compilers/gcc/5/default.nix index 6decc4c8cc3..f3dda7d13f7 100644 --- a/pkgs/development/compilers/gcc/5/default.nix +++ b/pkgs/development/compilers/gcc/5/default.nix @@ -57,7 +57,7 @@ assert langGo -> langCC; with stdenv.lib; with builtins; -let version = "5.2.0"; +let version = "5.3.0"; # Whether building a cross-compiler for GNU/Hurd. crossGNU = cross != null && cross.config == "i586-pc-gnu"; @@ -212,7 +212,7 @@ stdenv.mkDerivation ({ src = fetchurl { url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; - sha256 = "1bccp8a106xwz3wkixn65ngxif112vn90qf95m6lzpgpnl25p0sz"; + sha256 = "1ny4smkp5bzs3cp8ss7pl6lk8yss0d9m4av1mvdp72r1x695akxq"; }; inherit patches;