dee: disable unused-result error
This commit is contained in:
parent
4c434c4c3b
commit
700a3ddc25
1 changed files with 4 additions and 0 deletions
|
@ -56,6 +56,10 @@ stdenv.mkDerivation rec {
|
|||
"--with-pygi-overrides-dir=${placeholder "py"}/${python3.sitePackages}/gi/overrides"
|
||||
];
|
||||
|
||||
# Compilation fails after a change in glib where
|
||||
# g_string_free now returns a value
|
||||
env.NIX_CFLAGS_COMPILE = "-Wno-error=unused-result";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue