├── .git-blame-ignore-revs ├── .gitignore ├── AppRun.c ├── LICENSE ├── Makefile ├── README.md ├── appdir.nix ├── appdir.sh ├── appimage-bundle.nix ├── appimage-top.nix ├── appimage.nix ├── appimagetool.nix ├── default.nix ├── flake.lock ├── flake.nix ├── install-nix-from-closure.sh ├── nix-bootstrap.sh ├── nix-bundle.sh ├── nix-installer.nix ├── nix-run.sh ├── nix-strace.sh ├── nix-user-chroot ├── Makefile └── main.cpp ├── nix2appimage.sh ├── proot-x86_64 ├── release.nix ├── test-appimage.nix └── test.sh /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Fmt 2 | 2cbaf00b7c7de9edd927e9ab9821d000952c0526 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | result* -------------------------------------------------------------------------------- /AppRun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/AppRun.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/README.md -------------------------------------------------------------------------------- /appdir.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/appdir.nix -------------------------------------------------------------------------------- /appdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/appdir.sh -------------------------------------------------------------------------------- /appimage-bundle.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/appimage-bundle.nix -------------------------------------------------------------------------------- /appimage-top.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/appimage-top.nix -------------------------------------------------------------------------------- /appimage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/appimage.nix -------------------------------------------------------------------------------- /appimagetool.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/appimagetool.nix -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/flake.nix -------------------------------------------------------------------------------- /install-nix-from-closure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/install-nix-from-closure.sh -------------------------------------------------------------------------------- /nix-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/nix-bootstrap.sh -------------------------------------------------------------------------------- /nix-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/nix-bundle.sh -------------------------------------------------------------------------------- /nix-installer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/nix-installer.nix -------------------------------------------------------------------------------- /nix-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/nix-run.sh -------------------------------------------------------------------------------- /nix-strace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/nix-strace.sh -------------------------------------------------------------------------------- /nix-user-chroot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/nix-user-chroot/Makefile -------------------------------------------------------------------------------- /nix-user-chroot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/nix-user-chroot/main.cpp -------------------------------------------------------------------------------- /nix2appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/nix2appimage.sh -------------------------------------------------------------------------------- /proot-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/proot-x86_64 -------------------------------------------------------------------------------- /release.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/release.nix -------------------------------------------------------------------------------- /test-appimage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/test-appimage.nix -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-bundle/HEAD/test.sh --------------------------------------------------------------------------------