mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
19 lines
450 B
Groff
19 lines
450 B
Groff
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# nix-build
|
|
|
|
> Build a Nix expression.
|
|
> See also: `nix build.3`.
|
|
> More information: <https://nix.dev/manual/nix/stable/command-ref/nix-build.html>.
|
|
|
|
- Build a Nix expression:
|
|
|
|
`nix-build '<nixpkgs>' {{[-A|--attr]}} {{firefox}}`
|
|
|
|
- Build a sandboxed Nix expression (on non-NixOS):
|
|
|
|
`nix-build '<nixpkgs>' {{[-A|--attr]}} {{firefox}} --option sandbox true`
|