From 51ccf2d4badea4d709f8087e3fdb3fff3956d556 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 12 Sep 2020 11:48:58 +0200 Subject: [PATCH] gcc10: 10.1.0 -> 10.2.0 It's supposed to be just bugfixes. I tested building some projects with gcc10. Also gfortran10 still builds. I don't expect issues. This causes basically no rebuilds, as we use 9 by default. --- pkgs/development/compilers/gcc/10/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/gcc/10/default.nix b/pkgs/development/compilers/gcc/10/default.nix index aa34798cc58962..4f05cd3144cdeb 100644 --- a/pkgs/development/compilers/gcc/10/default.nix +++ b/pkgs/development/compilers/gcc/10/default.nix @@ -47,7 +47,7 @@ with stdenv.lib; with builtins; let majorVersion = "10"; - version = "${majorVersion}.1.0"; + version = "${majorVersion}.2.0"; inherit (stdenv) buildPlatform hostPlatform targetPlatform; @@ -81,7 +81,7 @@ stdenv.mkDerivation ({ src = fetchurl { url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.xz"; - sha256 = "b6898a23844b656f1b68691c5c012036c2e694ac4b53a8918d4712ad876e7ea2"; + sha256 = "130xdkhmz1bc2kzx061s3sfwk36xah1fw5w332c0nzwwpdl47pdq"; }; inherit patches;