about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2022-10-02 14:28:40 +0200
committerProfpatsch <mail@profpatsch.de>2022-10-02 14:28:40 +0200
commit1600cba863b8c047f78b3864a0aa09d1d9941d16 (patch)
treeb60e8c00b1451e913403f996517bbe2a73708e40 /pkgs/top-level
parentfaacb60b6ed9a63cef1461e594e7a708448fd5bf (diff)
downloadnixlib-1600cba863b8c047f78b3864a0aa09d1d9941d16.tar
nixlib-1600cba863b8c047f78b3864a0aa09d1d9941d16.tar.gz
nixlib-1600cba863b8c047f78b3864a0aa09d1d9941d16.tar.bz2
nixlib-1600cba863b8c047f78b3864a0aa09d1d9941d16.tar.lz
nixlib-1600cba863b8c047f78b3864a0aa09d1d9941d16.tar.xz
nixlib-1600cba863b8c047f78b3864a0aa09d1d9941d16.tar.zst
nixlib-1600cba863b8c047f78b3864a0aa09d1d9941d16.zip
Disable checkMeta by default again.
This caused too many downstream projects to break, so we are reverting
this change for now, until further transition fixes are in place.

See discussion in https://github.com/NixOS/nixpkgs/pull/191171

This reverts part of 6762de9a28e248f46bd0810e03c9666289de8e1d
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/config.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/config.nix b/pkgs/top-level/config.nix
index 6ddd647a2b1a..5057ca10e105 100644
--- a/pkgs/top-level/config.nix
+++ b/pkgs/top-level/config.nix
@@ -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.
       '';