Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions nixos/doc/manual/release-notes/rl-2211.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.
'';
Expand Down