gnome3.libgda: build with gcc6 on aarch64

Fixes #45618.  I don't know what's the matter.
Feel free to come with a better fix.
This commit is contained in:
Vladimír Čunát 2018-08-25 10:36:52 +02:00
parent ce5106af13
commit 2c1e736ae8
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -1,4 +1,5 @@
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl, gnome3
, overrideCC, gcc6
, mysqlSupport ? false, mysql ? null
, postgresSupport ? false, postgresql ? null
}:
@ -6,7 +7,7 @@
assert mysqlSupport -> mysql != null;
assert postgresSupport -> postgresql != null;
stdenv.mkDerivation rec {
(if stdenv.isAarch64 then overrideCC stdenv gcc6 else stdenv).mkDerivation rec {
name = "libgda-${version}";
version = "5.2.4";