skypeforlinux: fix Exec paths in further desktop files

The `Exec=` paths in `share/applications/skypeforlinux-share.desktop`
and `share/kservices5/ServiceMenus/skypeforlinux.desktop` still pointed
to `/usr/bin/skypeforlinux`.
Apply `substituteInPlace` on them as well.
This commit is contained in:
Elias Probst 2020-12-27 22:50:41 +01:00
parent b19ae92d50
commit 71f210137e
No known key found for this signature in database
GPG Key ID: 82C512826511BADB

View File

@ -108,6 +108,10 @@ in stdenv.mkDerivation {
# Fix the desktop link
substituteInPlace $out/share/applications/skypeforlinux.desktop \
--replace /usr/bin/ $out/bin/
substituteInPlace $out/share/applications/skypeforlinux-share.desktop \
--replace /usr/bin/ $out/bin/
substituteInPlace $out/share/kservices5/ServiceMenus/skypeforlinux.desktop \
--replace /usr/bin/ $out/bin/
'';
meta = with stdenv.lib; {