about summary refs log tree commit diff
path: root/third_party/nixpkgs
diff options
context:
space:
mode:
authorsterni <sternenseemann@systemli.org>2022-09-28T10·25+0200
committersterni <sternenseemann@systemli.org>2022-09-29T08·24+0000
commitb593f6922c3b31f2456cb8885d80af3789a380b3 (patch)
tree9b0594bfb2c8a2718af691ed2c63645d95835a90 /third_party/nixpkgs
parent3d9eb14e7ab929fb80b28f89b16bc2158c09399a (diff)
chore(3p/sources): Bump channels & overlays r/4987
Set checkMeta = false in nixpkgs config to prevent it from complaining
about our custom meta attributes.

Change-Id: I044dc6e2804eacdf8f6136698536fa1b2df79f85
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6797
Tested-by: BuildkiteCI
Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'third_party/nixpkgs')
-rw-r--r--third_party/nixpkgs/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix
index d266283e05..4aaa4bfd0f 100644
--- a/third_party/nixpkgs/default.nix
+++ b/third_party/nixpkgs/default.nix
@@ -25,6 +25,9 @@ let
       // {
         allowUnfree = true;
         allowBroken = true;
+        # Forbids our meta.ci attribute
+        # https://github.com/NixOS/nixpkgs/pull/191171#issuecomment-1260650771
+        checkMeta = false;
       };
 
     inherit localSystem;