mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
gnucash: don't fail on glib-2.58's new deprecrations
This commit is contained in:
parent
3782e127bc
commit
52e61752ee
|
@ -43,6 +43,10 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
propagatedUserEnvPkgs = [ dconf ];
|
propagatedUserEnvPkgs = [ dconf ];
|
||||||
|
|
||||||
|
# glib-2.58 deprecrated g_type_class_add_private
|
||||||
|
# Should probably be removed next version bump
|
||||||
|
CXXFLAGS = [ "-Wno-deprecated-declarations" ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs .
|
patchShebangs .
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue