query
On this page

runCommand

pkgs.runCommand

Docs pulled from | This Revision | 29 minutes ago


Nixpkgs manual

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

Noogle detected

Implementation

The following is the current implementation of this function.

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