fahviewer: fix variable substitution for shortcut
Because single quotes are used in the sed command, the application shortcut had the literal $out instead of the package path.
This commit is contained in:
parent
ba785adb28
commit
3c0680b783
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
unpackPhase = ''
|
||||
dpkg-deb -x ${src} ./
|
||||
sed -e 's|/usr/bin|$out/bin|g' -i usr/share/applications/FAHViewer.desktop
|
||||
sed -e "s|/usr/bin|$out/bin|g" -i usr/share/applications/FAHViewer.desktop
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
|
|
Loading…
Reference in a new issue