fix(3p/overlays/tvl): Add fix for Steam web view issue

See https://github.com/NixOS/nixpkgs/issues/137279

Change-Id: Id47f87396ad5e46c98080c7910d337d2643bcbd5
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3604
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
Vincent Ambo 2021-09-20 22:01:50 +03:00 committed by tazjin
parent 0939d4bf05
commit 766677748d

View file

@ -47,4 +47,9 @@ self: super: {
# Use latest SBCL, nixpkgs hasn't upgraded yet
sbcl = self.sbcl_2_1_8;
# Fix Steam issues with web views (nixpkgs#137279)
steam = super.steam.override {
extraPkgs = pkgs: with pkgs; [ pango harfbuzz libthai ];
};
}