about summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2017-11-01 05:59:03 -0500
committerWill Dietz <w@wdtz.org>2017-11-01 06:00:28 -0500
commita4d5586d4781e5f2d2994c6a5773af7d03a6e59c (patch)
treea27f58151039c1b70eb2198eacc777dab582172b /pkgs/development/compilers/gcc
parent89af540c4c6b0b31dff6cd0f851570ef11cf1749 (diff)
downloadnixlib-a4d5586d4781e5f2d2994c6a5773af7d03a6e59c.tar
nixlib-a4d5586d4781e5f2d2994c6a5773af7d03a6e59c.tar.gz
nixlib-a4d5586d4781e5f2d2994c6a5773af7d03a6e59c.tar.bz2
nixlib-a4d5586d4781e5f2d2994c6a5773af7d03a6e59c.tar.lz
nixlib-a4d5586d4781e5f2d2994c6a5773af7d03a6e59c.tar.xz
nixlib-a4d5586d4781e5f2d2994c6a5773af7d03a6e59c.tar.zst
nixlib-a4d5586d4781e5f2d2994c6a5773af7d03a6e59c.zip
gcc: 5.4.0 -> 5.5.0
Switch to xz since there is no bz2 variant (apparently)
Diffstat (limited to 'pkgs/development/compilers/gcc')
-rw-r--r--pkgs/development/compilers/gcc/5/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/gcc/5/default.nix b/pkgs/development/compilers/gcc/5/default.nix
index d1c76b6097ea..346ea928b76f 100644
--- a/pkgs/development/compilers/gcc/5/default.nix
+++ b/pkgs/development/compilers/gcc/5/default.nix
@@ -59,8 +59,8 @@ assert langGo -> langCC;
 with stdenv.lib;
 with builtins;
 
-let version = "5.4.0";
-    sha256 = "0fihlcy5hnksdxk0sn6bvgnyq8gfrgs8m794b1jxwd1dxinzg3b0";
+let version = "5.5.0";
+    sha256 = "11zd1hgzkli3b2v70qsm2hyqppngd4616qc96lmm9zl2kl9yl32k";
 
     # Whether building a cross-compiler for GNU/Hurd.
     crossGNU = targetPlatform != hostPlatform && targetPlatform.config == "i586-pc-gnu";
@@ -217,7 +217,7 @@ stdenv.mkDerivation ({
   builder = ../builder.sh;
 
   src = fetchurl {
-    url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2";
+    url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.xz";
     inherit sha256;
   };