diff options
author | sterni <sternenseemann@systemli.org> | 2022-09-28T10·25+0200 |
---|---|---|
committer | sterni <sternenseemann@systemli.org> | 2022-09-29T08·24+0000 |
commit | b593f6922c3b31f2456cb8885d80af3789a380b3 (patch) | |
tree | 9b0594bfb2c8a2718af691ed2c63645d95835a90 /third_party/nixpkgs | |
parent | 3d9eb14e7ab929fb80b28f89b16bc2158c09399a (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.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix index d266283e0504..4aaa4bfd0fd5 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; |