mirror of
https://github.com/NixOS/nix.git
synced 2025-11-10 20:46:01 +01:00
Documentation on "classic" commands with many sub-commands are notoriously hard to discover due to lack of overview and anchor links. Additionally the information on common options and environment variables is not accessible offline in man pages, and therefore often overlooked by readers. With this change, each sub-command of nix-store and nix-env gets its own page in the manual (listed in the table of contents), and each own man page. Also, man pages for each subcommand now (again) list common options and environment variables. While this makes each page quite long and some common parameters don't apply, this should still make it easier to navigate as that additional information was not accessible on the command line at all. It is now possible to run 'nix-store --<subcommand> --help` to display help pages for the given subcommand. Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
31 lines
821 B
Markdown
31 lines
821 B
Markdown
# Name
|
|
|
|
`nix-store --print-env` - print the build environment of a derivation
|
|
|
|
## Synopsis
|
|
|
|
`nix-store` `--print-env` *drvpath*
|
|
|
|
## Description
|
|
|
|
The operation `--print-env` prints out the environment of a derivation
|
|
in a format that can be evaluated by a shell. The command line arguments
|
|
of the builder are placed in the variable `_args`.
|
|
|
|
{{#include ./opt-common.md}}
|
|
|
|
{{#include ../opt-common.md}}
|
|
|
|
{{#include ../env-common.md}}
|
|
|
|
## Example
|
|
|
|
```console
|
|
$ nix-store --print-env $(nix-instantiate '<nixpkgs>' -A firefox)
|
|
…
|
|
export src; src='/nix/store/plpj7qrwcz94z2psh6fchsi7s8yihc7k-firefox-12.0.source.tar.bz2'
|
|
export stdenv; stdenv='/nix/store/7c8asx3yfrg5dg1gzhzyq2236zfgibnn-stdenv'
|
|
export system; system='x86_64-linux'
|
|
export _args; _args='-e /nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25c-default-builder.sh'
|
|
```
|
|
|