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:
parent
ce5106af13
commit
2c1e736ae8
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl, gnome3
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl, gnome3
|
||||||
|
, overrideCC, gcc6
|
||||||
, mysqlSupport ? false, mysql ? null
|
, mysqlSupport ? false, mysql ? null
|
||||||
, postgresSupport ? false, postgresql ? null
|
, postgresSupport ? false, postgresql ? null
|
||||||
}:
|
}:
|
||||||
@ -6,7 +7,7 @@
|
|||||||
assert mysqlSupport -> mysql != null;
|
assert mysqlSupport -> mysql != null;
|
||||||
assert postgresSupport -> postgresql != null;
|
assert postgresSupport -> postgresql != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
(if stdenv.isAarch64 then overrideCC stdenv gcc6 else stdenv).mkDerivation rec {
|
||||||
name = "libgda-${version}";
|
name = "libgda-${version}";
|
||||||
version = "5.2.4";
|
version = "5.2.4";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user