From f89d168e57499356c792b480d522c1886f52a899 Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Sun, 7 May 2023 08:22:41 +1200 Subject: [PATCH] heroic: add patch for upstream bugfix 2.7.1 introduced a bug that caused the application to capture common keyboard shortcuts regardless of focus. There has been fixed upstream but not yet made it into a release. --- pkgs/games/heroic/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/games/heroic/default.nix b/pkgs/games/heroic/default.nix index 8e668be5aa0b..22913264f3c7 100644 --- a/pkgs/games/heroic/default.nix +++ b/pkgs/games/heroic/default.nix @@ -2,6 +2,7 @@ , stdenv , fetchFromGitHub , fetchYarnDeps +, fetchpatch , gitUpdater , yarn , fixup_yarn_lock @@ -30,6 +31,15 @@ in stdenv.mkDerivation rec { sha256 = "sha256-R0lZrVfUH8NucuwarcE47jQ8ex5FY2hK6jJJ2TIRSWY="; }; + patches = [ + # Fix for capturing keyboard shortcuts when not in focus. + # TODO: Remove when updating past 2.7.1. + (fetchpatch { + url = "https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/commit/c82e6ca8dd7070071793fe5a3c4c04b4ae02c3c7.patch"; + hash = "sha256-Pum67YPejfq8ERv6XWVLQzs+/SyNojmTGTQpE0UR4kg="; + }) + ]; + nativeBuildInputs = [ yarn fixup_yarn_lock