2020-12-18 15:25:36 +02:00
|
|
|
R""(
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
* Install a package from Nixpkgs:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix profile install nixpkgs#hello
|
|
|
|
```
|
|
|
|
|
|
|
|
* Install a package from a specific branch of Nixpkgs:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix profile install nixpkgs/release-20.09#hello
|
|
|
|
```
|
|
|
|
|
|
|
|
* Install a package from a specific revision of Nixpkgs:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix profile install nixpkgs/d73407e8e6002646acfdef0e39ace088bacc83da#hello
|
|
|
|
```
|
|
|
|
|
2022-05-03 15:37:28 +03:00
|
|
|
* Install a specific output of a package:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix profile install nixpkgs#bash^man
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2020-12-18 15:25:36 +02:00
|
|
|
# Description
|
|
|
|
|
|
|
|
This command adds *installables* to a Nix profile.
|
|
|
|
|
|
|
|
)""
|