open-vm-tools: ignore deprecation warnings

Fixes #71311
This commit is contained in:
worldofpeace 2019-10-24 09:45:45 -04:00
parent a5c6103523
commit 8f3297fbf2

View File

@ -46,6 +46,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
# igrone glib-2.62 deprecations
# Drop in next stable release.
NIX_CFLAGS_COMPILE = [ "-DGLIB_DISABLE_DEPRECATION_WARNINGS" ];
postInstall = ''
wrapProgram "$out/etc/vmware-tools/scripts/vmware/network" \
--prefix PATH ':' "${lib.makeBinPath [ iproute dbus systemd which ]}"