R""(
Bundle Hello:
Bundle a specific version of Nix:
Bundle a Hello using a specific bundler:
nix bundle
, by default, packs the closure of the installable into a single self-extracting executable. See the bundlers
homepage for more details.
Note
This command only works on Linux.
If no flake output attribute is given, nix bundle
tries the following flake output attributes:
bundlers.<system>.default
If an attribute name is given, nix bundle
tries the following flake output attributes:
bundlers.<system>.<name>
A bundler is specified by a flake output attribute named bundlers.<system>.<name>
. It looks like this:
A bundler must be a function that accepts an arbitrary value (typically a derivation or app definition) and returns a derivation.
)""