From 7139b127b341142405e8e9b803b686bda5297144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 16 Dec 2019 11:36:27 +0100 Subject: [PATCH] gcc7: 7.4.0 -> 7.5.0 It's bugfix-only; these tend to be fairly safe, and we don't really use gcc7 anymore by default. I tested building gcc7 and gfortran7 on x86_64-linux. https://gcc.gnu.org/ml/gcc-announce/2019/msg00003.html --- pkgs/development/compilers/gcc/7/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/gcc/7/default.nix b/pkgs/development/compilers/gcc/7/default.nix index 3362cfe7a081..237cb455f9fa 100644 --- a/pkgs/development/compilers/gcc/7/default.nix +++ b/pkgs/development/compilers/gcc/7/default.nix @@ -43,7 +43,7 @@ with stdenv.lib; with builtins; let majorVersion = "7"; - version = "${majorVersion}.4.0"; + version = "${majorVersion}.5.0"; inherit (stdenv) buildPlatform hostPlatform targetPlatform; @@ -85,7 +85,7 @@ stdenv.mkDerivation ({ src = fetchurl { url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.xz"; - sha256 = "0lgy170b0pp60j9cczqkmaqyjjb584vfamj4c30swd7k0j6y5pgd"; + sha256 = "0qg6kqc5l72hpnj4vr6l0p69qav0rh4anlkk3y55540zy3klc6dq"; }; inherit patches;