diff options
author | sterni <sternenseemann@systemli.org> | 2022-11-23T01·08+0100 |
---|---|---|
committer | sterni <sternenseemann@systemli.org> | 2022-11-23T21·25+0000 |
commit | 467cb89145340226d5f7e92d38f2ddeef50c28d4 (patch) | |
tree | a7c04c521161f19b5e76661604ba81658e0a36c0 /third_party/nixpkgs | |
parent | 419a9ab0fe5d1b9298b9452129526c0dee21b532 (diff) |
chore(3p/sources): Bump channels & overlays r/5307
* //3p/nixpkgs: allow insecure qtwebkit, since a package in grfn's home depends on it. Reasoning for marking qtwebkit as insecure is given here: https://blogs.gnome.org/mcatanzaro/2022/11/04/stop-using-qtwebkit/ * //3p/gerrit: update nondeterministic bazel output hash Change-Id: Ie652905969bf43abb457f6af211f771cff093dce Reviewed-on: https://cl.tvl.fyi/c/depot/+/7353 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'third_party/nixpkgs')
-rw-r--r-- | third_party/nixpkgs/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix index 4aaa4bfd0fd5..eedd71474e72 100644 --- a/third_party/nixpkgs/default.nix +++ b/third_party/nixpkgs/default.nix @@ -28,6 +28,11 @@ let # Forbids our meta.ci attribute # https://github.com/NixOS/nixpkgs/pull/191171#issuecomment-1260650771 checkMeta = false; + # TODO(grfn): Currently needed for subsurface, set globally to avoid + # reimporting nixpkgs in home-manager + permittedInsecurePackages = [ + "qtwebkit-5.212.0-alpha4" + ]; }; inherit localSystem; |