gnucash: don't fail on glib-2.58's new deprecrations

This commit is contained in:
Tor Hedin Brønner 2018-09-22 23:07:02 +02:00 committed by Jan Tojnar
parent 3782e127bc
commit 52e61752ee
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -43,6 +43,10 @@ stdenv.mkDerivation rec {
propagatedUserEnvPkgs = [ dconf ];
# glib-2.58 deprecrated g_type_class_add_private
# Should probably be removed next version bump
CXXFLAGS = [ "-Wno-deprecated-declarations" ];
postPatch = ''
patchShebangs .
'';