query
On this page

runCommandCC

pkgs.runCommandCC

Docs pulled from | This Revision | 44 minutes ago


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


Noogle detected

Implementation

The following is the current implementation of this function.

runCommandCC =
    name: env:
    runCommandWith {
      stdenv = stdenv;
      runLocal = false;
      inherit name;
      derivationArgs = env;
    };