overrideInStdenv
pkgs.overrideInStdenv
Docs pulled from | This Revision | 10 minutes ago
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;
});