nix-appimage icon indicating copy to clipboard operation
nix-appimage copied to clipboard

Convert a nixos derivation into a self-contained binary

Results 7 nix-appimage issues
Sort by recently updated
recently updated
newest added

Often times the final squashfs image contains a bunch of unnecessary or unused files the appimage will not use at runtime. It is desireable to exclude those files so the...

My native `unshare` works: ``` $ unshare -U echo hi hi $ echo $? 0 ``` But the AppImage doesn't: ``` $ ./bundle util-linux /bin/unshare $ ./unshare-x86_64.AppImage -U echo hi...

This looks very promising. Have been looking for ages for a solution to generate working for generating appimage applications for OpenGL applications. `nix-bundle` has [issues with it](https://github.com/matthewbauer/nix-bundle/issues/23) all attempts to...

Thoughts on making this available in the default [bundlers repo](https://github.com/NixOS/bundlers)? I'm looking to improve the quality and availability of bundlers that can be easily discovered.

The function `writeReferencesToFile` has been deprecated in favor of `writeClose`. See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-writeReferencesToFile

This is a try to create a new Apprun using bwrap and without doing chroot. **It needs bubblewrap to be installed on the machine that will run the AppImage.** It...

Hi, we have started to use `nix-appimage` to create portable AppImages over at: https://github.com/Azathothas/Toolpacks Unfortunately, currently we have to extract the AppImage (created by `nix-appimage` ) and then use some...