query
On this page

runCommandNoCCLocal

pkgs.runCommandNoCCLocal

Docs pulled from | This Revision | about 2 hours 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;
    };