query
On this page

runCommand

pkgs.runCommand

Docs pulled from | This Revision | 10 minutes ago


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


Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

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