system-config-printer: fix expansion of $(out) in .service file

Allows the configure-printer@.service to find the udev-configure-printer
program (correct ExecStart path).

+4
+4
pkgs/tools/misc/system-config-printer/default.nix
··· 59 59 60 60 # The below line will be unneeded when the next upstream release arrives. 61 61 sed -i -e "s|/usr/bin|$out/bin|" "$out/share/dbus-1/services/org.fedoraproject.Config.Printing.service" 62 + 63 + # Manually expand literal "$(out)", which have failed to expand 64 + sed -e "s|ExecStart=\$(out)|ExecStart=$out|" \ 65 + -i "$out/etc/systemd/system/configure-printer@.service" 62 66 ''; 63 67 64 68 meta = {