summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-04-04 23:25:32 +0200
committerGitHub <noreply@github.com>2021-04-04 23:25:32 +0200
commit4cab86fd6685eb2030265115bfc3f4a714e615b0 (patch)
tree1a7234081708d49b189337e953e326accd985653 /pkgs/applications
parentca976db191af628cffa0c748e38705e1c8ef027f (diff)
parent144a8769a92d60a87210bbf24501a7d48ffc6d9f (diff)
downloadnixpkgs-4cab86fd6685eb2030265115bfc3f4a714e615b0.tar
nixpkgs-4cab86fd6685eb2030265115bfc3f4a714e615b0.tar.gz
nixpkgs-4cab86fd6685eb2030265115bfc3f4a714e615b0.tar.bz2
nixpkgs-4cab86fd6685eb2030265115bfc3f4a714e615b0.tar.lz
nixpkgs-4cab86fd6685eb2030265115bfc3f4a714e615b0.tar.xz
nixpkgs-4cab86fd6685eb2030265115bfc3f4a714e615b0.tar.zst
nixpkgs-4cab86fd6685eb2030265115bfc3f4a714e615b0.zip
Merge pull request #118472 from IvarWithoutBones/fix/apple-music
apple-music-electron: fix desktop file exec path
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/apple-music-electron/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/audio/apple-music-electron/default.nix b/pkgs/applications/audio/apple-music-electron/default.nix
index 5d0cb68edb7..e4d43d7f01f 100644
--- a/pkgs/applications/audio/apple-music-electron/default.nix
+++ b/pkgs/applications/audio/apple-music-electron/default.nix
@@ -18,7 +18,7 @@ in appimageTools.wrapType2 {
 
     install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications
     substituteInPlace $out/share/applications/${pname}.desktop \
-      --replace 'Exec=AppRun' 'Exec=$out/bin/apple-music-electron'
+      --replace "Exec=AppRun" "Exec=$out/bin/apple-music-electron"
     cp -r ${appimageContents}/usr/share/icons $out/share
   '';