mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
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
|
||||
, 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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user