phonon-backend-gstreamer: don't create $out/$out/share/icons

The build system tries to update the mtime of the icons directory if
`DESTDIR` is unset. That code has bug though that does not deal well
with absolute `CMAKE_SHARE_PREFIX` resulting a double prefix bug.

Setting `DESTDIR=/` (should be a no-op) fixes this.

+4
+4
pkgs/development/libraries/phonon/backends/gstreamer.nix
··· 38 38 "-I${gst_all_1.gstreamer.dev}/lib/gstreamer-1.0/include" 39 39 ]; 40 40 41 + # cleanup: the build system creates (empty) $out/$out/share/icons (double prefix) 42 + # if DESTDIR is unset 43 + DESTDIR="/"; 44 + 41 45 nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules; 42 46 43 47 cmakeFlags =