libvirt: add missing gettext in libvirt-guests.sh

Or else this is seen in the system log:

.../libexec/libvirt-guests.sh: line 211: gettext: command not found

+2
+2
pkgs/development/libraries/libvirt/default.nix
··· 74 74 substituteInPlace $out/libexec/libvirt-guests.sh \ 75 75 --replace "$out/bin" "${gettext}/bin" \ 76 76 --replace "lock/subsys" "lock" 77 + sed -e "/gettext\.sh/a \\\n# Added in nixpkgs:\ngettext() { \"${gettext}/bin/gettext\" \"\$@\"; }" \ 78 + -i "$out/libexec/libvirt-guests.sh" 77 79 '' + optionalString stdenv.isLinux '' 78 80 rm $out/lib/systemd/system/{virtlockd,virtlogd}.* 79 81 wrapProgram $out/sbin/libvirtd \