-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
appimage-run improvements #57169
appimage-run improvements #57169
Conversation
What do you think about adding |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. I'm slightly against including gdb (but the environment is already huge, maybe it's the wrong place to save space).
Consider addressing the style nitpick, and then let's merge it.
@@ -10,7 +10,15 @@ in buildFHSUserEnv (fhsArgs // { | |||
|
|||
runScript = writeScript "appimage-exec" '' | |||
#!${runtimeShell} | |||
if [ $# -le 0 ]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The number of arguments passed couldn't be less than 0, so I would prefer -eq
here.
@@ -10,7 +10,15 @@ in buildFHSUserEnv (fhsArgs // { | |||
|
|||
runScript = writeScript "appimage-exec" '' | |||
#!${runtimeShell} | |||
if [ $# -le 0 ]; then | |||
echo "Uage: $0 FILE [OPTION...]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be "Usage"
Forgive me if this is the wrong place to mention this. Just run appimage-run on the latest Synfigstudio and it failed with: |
Yes, that is exactly the problem this PR is supposed to solve. However I'd be in favor of including it anyways, since the main purpose of |
If that list is canonical, is it not the responsibility of the packager to make sure that all other libraries are part of the package? If so, perhaps I should nudge the chaps at Synfig... |
@timokau It is fairly easy for users to add their own packages to appimage-run (
The problem with adding every library on-demand is that it hurts people who want to just run well-behaved AppImages (and they can't do anything about it, since there currently is no way to remove packages), and packages could never be removed in the name of backwards-compatibility. (That said, I didn't necessarily follow these rules for the initial list, I just copied it from the Steam chroot) |
@tilpner for the newbie's sake, would that |
@tm-nihonsuki Yes, it would go wherever you used appimage-run previously. E.g. instead of { pkgs, ... }: {
users.users.nihon.packages = with pkgs; [
appimage-run
];
} you would do { pkgs, ... }: {
users.users.nihon.packages = with pkgs; [
(appimage-run.override { extraPkgs = p: with p; [ ... ]; })
];
} |
Yes, they should have included |
Most libraries expected by an appiamge probably fulfill this point, since it was presumabliy tested on multiple systems and nobody complained about the library missing. The libraries present on a typical nixos system shouldn't be too different to those common to on a typibal ubuntu/gentoo/arch system. At least in this case:
Seems like we have slightly different usecases. For me |
That's very helpful. I've been able to get Synfigstudio to run with appimage-run after adding libtools and a few more libX libraries. However, I cannot run the app from the start menu entry created when I first ran appimage-run on this image. What is the best way to proceed. Is it safe to simply delete the squashfs created and re-run the appimage-run on the image with the new configuration? |
I agree that appimage-run is a convenience for (hopefully™) temporary usecases where a Nix package is not available. Small closure size factors into that convenience though, so it is worth attempting to keep it low (I realize it's huge already). And yes, the requirements (which I quite arbitrarily typed up, and don't need to be applied too strictly) are fairly loose. I hadn't checked for libtool, and it seems fine to add to this PR. |
@tm-nihonsuki Yes, it's safe to delete |
Okay, I can only run from the downloaded image with appimage-run. If I try to run the linked AppRun in the squashfs, I get a 'No such...' error. What have I overlooked? |
I haven't linked to anything about AppRun, I'm not sure what you mean. The whole point of appimage-run is getting around the "No such file" error, you can't just execute the extracted files from a normal shell. |
When I first ran appimage-run and the synfig image, I was asked if I wanted to integrate appimages into the desktop environment, IIRC. It is probably this that is responsible for the links being placed in the menu. As I'm unsure what appimage-run does, I may have conflated the two coincident events. appimage-run clearly inflates the archive. How, then, does it run the app: is there a script it builds and executes? |
9fb4a65
to
4f956e8
Compare
I added |
LGTM! |
Motivation for this change
Fixes #57127. CC @tilpner.
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)