qemu: remove redundant copy of qemu-ga

There's no reason to have one copy of qemu-ga in $out and another in
$ga, and because we only applied remove-references-to to one of the
copies, it caused a collision when QEMU was used in a buildEnv.
main
Alyssa Ross 2 years ago committed by Peter Hoeg
parent 797fdd3859
commit 665bb90fc3
  1. 5
      pkgs/applications/virtualization/qemu/default.nix

@ -234,9 +234,10 @@ stdenv.mkDerivation rec {
# the .desktop is both invalid and pointless
rm -f $out/share/applications/qemu.desktop
# copy qemu-ga (guest agent) to separate output
# move qemu-ga (guest agent) to separate output
mkdir -p $ga/bin
cp $out/bin/qemu-ga $ga/bin/
mv $out/bin/qemu-ga $ga/bin/
ln -s $ga/bin/qemu-ga $out/bin
remove-references-to -t $out $ga/bin/qemu-ga
'' + lib.optionalString gtkSupport ''
# wrap GTK Binaries

Loading…
Cancel
Save