3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #194058: Disable checkMeta by default again

This commit is contained in:
piegames 2022-10-02 18:00:48 +02:00 committed by GitHub
commit ec5f7d48ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 12 deletions

View file

@ -503,14 +503,6 @@
maintainer to update the package.
</para>
</listitem>
<listitem>
<para>
The (previously undocumented) Nixpkgs configuration option
<literal>checkMeta</literal> now defaults to
<literal>true</literal>. This may cause evaluation failures
for packages with incorrect <literal>meta</literal> attribute.
</para>
</listitem>
<listitem>
<para>
xow package removed along with the

View file

@ -172,9 +172,6 @@ Available as [services.patroni](options.html#opt-services.patroni.enable).
- riak package removed along with `services.riak` module, due to lack of maintainer to update the package.
- The (previously undocumented) Nixpkgs configuration option `checkMeta` now defaults to `true`. This may cause evaluation
failures for packages with incorrect `meta` attribute.
- xow package removed along with the `hardware.xow` module, due to the project being deprecated in favor of `xone`, which is available via the `hardware.xone` module.
- dd-agent package removed along with the `services.dd-agent` module, due to the project being deprecated in favor of `datadog-agent`, which is available via the `services.datadog-agent` module.

View file

@ -130,7 +130,7 @@ let
checkMeta = mkOption {
type = types.bool;
default = true;
default = false;
description = ''
Whether to check that the `meta` attribute of derivations are correct during evaluation time.
'';