Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0b7664083089
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e3df936356b7
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 26, 2018

  1. gcc: 7.2.0 -> 7.3.0

    clefru committed Jan 26, 2018
    Copy the full SHA
    2f83f52 View commit details
  2. Merge pull request #34294 from clefru/gcc7-bump

    gcc: 7.2.0 -> 7.3.0
    edolstra authored Jan 26, 2018
    Copy the full SHA
    e3df936 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/compilers/gcc/7/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/compilers/gcc/7/default.nix
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ assert langGo -> langCC;
with stdenv.lib;
with builtins;

let version = "7.2.0";
let version = "7.3.0";

# Whether building a cross-compiler for GNU/Hurd.
crossGNU = targetPlatform != hostPlatform && targetPlatform.config == "i586-pc-gnu";
@@ -185,7 +185,7 @@ stdenv.mkDerivation ({

src = fetchurl {
url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.xz";
sha256 = "16j7i0888j2f1yp9l0nhji6cq65dy6y4nwy8868a8njbzzwavxqw";
sha256 = "0p71bij6bfhzyrs8676a8jmpjsfz392s2rg862sdnsk30jpacb43";
};

inherit patches;