2020-12-17 10:45:59 +00:00
|
|
|
R""(
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
* Bundle Hello:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix bundle nixpkgs#hello
|
|
|
|
# ./hello
|
|
|
|
Hello, world!
|
|
|
|
```
|
|
|
|
|
|
|
|
* Bundle a specific version of Nix:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix bundle github:NixOS/nix/e3ddffb27e5fc37a209cfd843c6f7f6a9460a8ec
|
|
|
|
# ./nix --version
|
|
|
|
nix (Nix) 2.4pre20201215_e3ddffb
|
|
|
|
```
|
|
|
|
|
2022-01-21 16:43:11 +00:00
|
|
|
* Bundle a Hello using a specific bundler:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix bundle --bundler github:NixOS/bundlers#toDockerImage nixpkgs#hello
|
|
|
|
# docker load < hello-2.10.tar.gz
|
|
|
|
# docker run hello-2.10:latest hello
|
|
|
|
Hello, world!
|
|
|
|
```
|
|
|
|
|
2020-12-17 10:45:59 +00:00
|
|
|
# Description
|
|
|
|
|
2022-12-01 00:57:02 +00:00
|
|
|
`nix bundle`, by default, packs the closure of the [*installable*](./nix.md#installables) into a single
|
2022-01-25 08:48:44 +00:00
|
|
|
self-extracting executable. See the [`bundlers`
|
|
|
|
homepage](https://github.com/NixOS/bundlers) for more details.
|
2020-12-17 10:45:59 +00:00
|
|
|
|
|
|
|
> **Note**
|
|
|
|
>
|
|
|
|
> This command only works on Linux.
|
|
|
|
|
2022-01-28 15:23:57 +00:00
|
|
|
# Flake output attributes
|
2020-12-23 15:41:07 +00:00
|
|
|
|
2022-01-21 16:43:11 +00:00
|
|
|
If no flake output attribute is given, `nix bundle` tries the following
|
|
|
|
flake output attributes:
|
|
|
|
|
2022-02-22 13:32:56 +00:00
|
|
|
* `bundlers.<system>.default`
|
2022-01-21 16:43:11 +00:00
|
|
|
|
2022-08-10 23:49:29 +00:00
|
|
|
If an attribute *name* is given, `nix bundle` tries the following flake
|
2022-01-21 16:43:11 +00:00
|
|
|
output attributes:
|
|
|
|
|
2022-02-22 13:32:56 +00:00
|
|
|
* `bundlers.<system>.<name>`
|
2022-01-21 16:43:11 +00:00
|
|
|
|
|
|
|
# Bundlers
|
|
|
|
|
2022-01-28 15:23:57 +00:00
|
|
|
A bundler is specified by a flake output attribute named
|
2022-02-22 13:32:56 +00:00
|
|
|
`bundlers.<system>.<name>`. It looks like this:
|
2022-01-21 16:43:11 +00:00
|
|
|
|
|
|
|
```nix
|
2022-02-22 13:32:56 +00:00
|
|
|
bundlers.x86_64-linux = rec {
|
|
|
|
identity = drv: drv;
|
2022-01-21 16:43:11 +00:00
|
|
|
|
2022-02-22 13:32:56 +00:00
|
|
|
blender_2_79 = drv: self.packages.x86_64-linux.blender_2_79;
|
2022-01-21 16:43:11 +00:00
|
|
|
|
2022-02-22 13:32:56 +00:00
|
|
|
default = identity;
|
|
|
|
};
|
2022-01-21 16:43:11 +00:00
|
|
|
```
|
|
|
|
|
2022-01-28 15:23:57 +00:00
|
|
|
A bundler must be a function that accepts an arbitrary value (typically a
|
|
|
|
derivation or app definition) and returns a derivation.
|
2020-12-23 15:41:07 +00:00
|
|
|
|
2020-12-17 10:45:59 +00:00
|
|
|
)""
|