query
On this page

overrideInStdenv

pkgs.overrideInStdenv

Docs pulled from | This Revision | 29 minutes ago


Nixpkgs manual

for other dependencies.

Noogle detected

Implementation

The following is the current implementation of this function.

overrideInStdenv =
    stdenv: pkgs:
    stdenv.override (prev: {
      allowedRequisites = null;
      extraBuildInputs = (prev.extraBuildInputs or [ ]) ++ pkgs;
    });