tree-wide: replace wrapProgram with wrapGApp

where appropriate
This commit is contained in:
Jan Tojnar
2019-09-10 17:54:57 +02:00
parent 9d152886ab
commit 9b6789de73
8 changed files with 14 additions and 12 deletions
@@ -237,9 +237,9 @@ stdenv.mkDerivation rec {
postFixup = ''
find -L "$out/bin" "$out/libexec" -type f -executable -print0 \
| while IFS= read -r -d ''' file; do
if [[ "''${file}" != *.efi ]]; then
echo "Wrapping program ''${file}"
wrapProgram "''${file}" "''${gappsWrapperArgs[@]}"
if [[ "$file" != *.efi ]]; then
echo "Wrapping program $file"
wrapGApp "$file"
fi
done
'';