query
On this page

runCommandLocal

pkgs.runCommandLocal

Docs pulled from | This Revision | 10 minutes ago


See https://nixos.org/manual/nixpkgs/unstable/#trivial-builder-runCommandLocal


Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

runCommandLocal =
    name: env:
    runCommandWith {
      stdenv = stdenvNoCC;
      runLocal = true;
      inherit name;
      derivationArgs = env;
    };