Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
Revert to old Phase
Browse files Browse the repository at this point in the history
  • Loading branch information
DataEraserC committed Sep 29, 2023
1 parent f9d0865 commit 5e5a679
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@ stdenv.mkDerivation rec {

installPhase = ''
_install() {
mkdir -p $out/{bin,lib/AppImage}
mv Adobe_Illustrator_CS6.AppImage $out/lib/AppImage/
install -Dm644 $icon $out/share/icons/hicolor/48x48/apps/Adobe_Illustrator_CS6.png
mkdir -p $out/Appimage
mv Adobe_Illustrator_CS6.AppImage $out/Appimage/
makeWrapper ${appimage-run}/bin/appimage-run $out/bin/adobe_illustrator_cs6 \
--argv0 "adobe_illustrator_cs6" \
--add-flags "$out/lib/AppImage/Adobe_Illustrator_CS6.AppImage"
--add-flags "$out/Appimage/Adobe_Illustrator_CS6.AppImage"
}
_install
'';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@ stdenv.mkDerivation rec {

installPhase = ''
_install() {
mkdir -p $out/{bin,lib/AppImage}
mv Adobe_Photoshop_CS6.AppImage $out/lib/AppImage/
install -Dm644 $icon $out/share/icons/hicolor/48x48/apps/Adobe_Photoshop_CS6.png
mkdir -p $out/Appimage
mv Adobe_Photoshop_CS6.AppImage $out/Appimage/
makeWrapper ${appimage-run}/bin/appimage-run $out/bin/adobe_photoshop_cs6 \
--argv0 "adobe_photoshop_cs6" \
--add-flags "$out/lib/AppImage/Adobe_Photoshop_CS6.AppImage"
--add-flags "$out/Appimage/Adobe_Photoshop_CS6.AppImage"
}
_install
'';
Expand Down

0 comments on commit 5e5a679

Please sign in to comment.