mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 09:42:58 +00:00
19 lines
433 B
Plaintext
19 lines
433 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# nix-build
|
|
|
|
> Build a Nix expression.
|
|
> See also: `nix3 build`.
|
|
> More information: <https://nixos.org/manual/nix/stable/command-ref/nix-build.html>.
|
|
|
|
- Build a Nix expression:
|
|
|
|
`nix-build '<nixpkgs>' --attr {{firefox}}`
|
|
|
|
- Build a sandboxed Nix expression (on non-NixOS):
|
|
|
|
`nix-build '<nixpkgs>' --attr {{firefox}} --option sandbox true`
|