about summary refs log tree commit diff
path: root/nixpkgs/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-09-12 11:48:58 +0200
committerAlyssa Ross <hi@alyssa.is>2020-11-27 13:28:28 +0000
commitce3f927e9024ccfbca7eb2b7b65f8036f1b27f8e (patch)
tree82e3de71a945a1d0920eaf16a3201bf1f7455c43 /nixpkgs/pkgs
parent837d6e51ca07b810598425a73389663cd2f7c495 (diff)
downloadnixlib-ce3f927e9024ccfbca7eb2b7b65f8036f1b27f8e.tar
nixlib-ce3f927e9024ccfbca7eb2b7b65f8036f1b27f8e.tar.gz
nixlib-ce3f927e9024ccfbca7eb2b7b65f8036f1b27f8e.tar.bz2
nixlib-ce3f927e9024ccfbca7eb2b7b65f8036f1b27f8e.tar.lz
nixlib-ce3f927e9024ccfbca7eb2b7b65f8036f1b27f8e.tar.xz
nixlib-ce3f927e9024ccfbca7eb2b7b65f8036f1b27f8e.tar.zst
nixlib-ce3f927e9024ccfbca7eb2b7b65f8036f1b27f8e.zip
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.

(cherry picked from commit 51ccf2d4badea4d709f8087e3fdb3fff3956d556)
Diffstat (limited to 'nixpkgs/pkgs')
-rw-r--r--nixpkgs/pkgs/development/compilers/gcc/10/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/development/compilers/gcc/10/default.nix b/nixpkgs/pkgs/development/compilers/gcc/10/default.nix
index aa34798cc589..4f05cd3144cd 100644
--- a/nixpkgs/pkgs/development/compilers/gcc/10/default.nix
+++ b/nixpkgs/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;