Skip to contents

Runs nix-build with a quiet flag, outputting to _rixpress/result.

Usage

rxp_make(verbose = 0L, max_jobs = 1, cores = 1)

Arguments

verbose

Integer, defaults to 0L. Verbosity level: 0 = silent build (no live output), 1+ = show nix output with increasing verbosity. 0: "Errors only", 1: "Informational", 2: "Talkative", 3: "Chatty", 4: "Debug", 5: "Vomit". Values higher than 5 are capped to 5 Each level adds one –verbose flag to nix-store command. For backward compatibility, logical TRUE/FALSE are accepted with a deprecation warning (TRUE → 1, FALSE → 0).

max_jobs

Integer, number of derivations to be built in parallel.

cores

Integer, number of cores a derivation can use during build.

Value

A character vector of paths to the built outputs.

See also

Other pipeline functions: rxp_populate()

Examples

if (FALSE) { # \dontrun{
  # Build the pipeline with default settings (silent)
  rxp_make()

  # Build with verbose output and parallel execution
  rxp_make(verbose = 2, max_jobs = 4, cores = 2)

  # Maximum verbosity
  rxp_make(verbose = 3)
} # }