treewide: purge explicit usage of gcc6

It's now the default. /cc #19456
This makes a real build simplification, because in our current
bootstrapping+aliases, `gcc6` attribute is not the default compiler
but a derivation *built by* the default compiler.

nix-exec didn't build before this commit already
This commit is contained in:
Vladimír Čunát
2017-09-03 09:57:20 +02:00
parent ca12bd7a3f
commit 53998f5036
6 changed files with 12 additions and 13 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, pure, octave, gcc6 }:
{ stdenv, fetchurl, pkgconfig, pure, octave }:
stdenv.mkDerivation rec {
baseName = "octave";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "0l1mvmi3rpabzjcrk6p04rdn922mvdm9x67zby3dha5iiccc47q0";
};
buildInputs = [ pkgconfig gcc6 ];
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ pure octave ];
makeFlags = "libdir=$(out)/lib prefix=$(out)/";
setupHook = ../generic-setup-hook.sh;