overrides - options

overrideAll

Overrides applied on all dependencies.

Type: module

Default: { }

Example:

{
  mkDerivation = {
    doCheck = false;
  };
}

Declared by:

overrides

Overrides applied only on dependencies matching the specified name.

Type: attribute set of module

Default: { }

Example:

{
  hello = {
    mkDerivation = {
      postPatch = ''
        substituteInPlace Makefile --replace /usr/local /usr
      '';
    };
  };
}

Declared by: