about summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc/7
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-12-06 13:37:48 -0600
committerWill Dietz <w@wdtz.org>2018-12-29 13:55:20 -0600
commitee25d916eef4b393fc8db6584d6af66f5f793b18 (patch)
tree76a2f01101e55945a401586a2dc15e622b7a18a7 /pkgs/development/compilers/gcc/7
parent9960a413f40ec31ec10e33e3f25e90283c130693 (diff)
downloadnixlib-ee25d916eef4b393fc8db6584d6af66f5f793b18.tar
nixlib-ee25d916eef4b393fc8db6584d6af66f5f793b18.tar.gz
nixlib-ee25d916eef4b393fc8db6584d6af66f5f793b18.tar.bz2
nixlib-ee25d916eef4b393fc8db6584d6af66f5f793b18.tar.lz
nixlib-ee25d916eef4b393fc8db6584d6af66f5f793b18.tar.xz
nixlib-ee25d916eef4b393fc8db6584d6af66f5f793b18.tar.zst
nixlib-ee25d916eef4b393fc8db6584d6af66f5f793b18.zip
gcc: 7.3 -> 7.4
https://gcc.gnu.org/gcc-7/changes.html
Diffstat (limited to 'pkgs/development/compilers/gcc/7')
-rw-r--r--pkgs/development/compilers/gcc/7/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/gcc/7/default.nix b/pkgs/development/compilers/gcc/7/default.nix
index d790246717d9..41af804e551f 100644
--- a/pkgs/development/compilers/gcc/7/default.nix
+++ b/pkgs/development/compilers/gcc/7/default.nix
@@ -37,7 +37,7 @@ assert langGo -> langCC;
 with stdenv.lib;
 with builtins;
 
-let version = "7.3.0";
+let version = "7.4.0";
 
     inherit (stdenv) buildPlatform hostPlatform targetPlatform;
 
@@ -138,7 +138,7 @@ stdenv.mkDerivation ({
 
   src = fetchurl {
     url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.xz";
-    sha256 = "0p71bij6bfhzyrs8676a8jmpjsfz392s2rg862sdnsk30jpacb43";
+    sha256 = "0lgy170b0pp60j9cczqkmaqyjjb584vfamj4c30swd7k0j6y5pgd";
   };
 
   inherit patches;