From df8f977f5b323c644528950e9484ac781e4c7fc6 Mon Sep 17 00:00:00 2001 From: Gliczy <129636582+Gliczy@users.noreply.github.com> Date: Mon, 16 Dec 2024 22:43:19 +0100 Subject: [PATCH] gamescope: update shader source The owner (`Joshua-Ashton`) has migrated to `misyltoad` --- pkgs/by-name/ga/gamescope/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ga/gamescope/package.nix b/pkgs/by-name/ga/gamescope/package.nix index 6755e603163f..5a37da55a92f 100644 --- a/pkgs/by-name/ga/gamescope/package.nix +++ b/pkgs/by-name/ga/gamescope/package.nix @@ -39,8 +39,8 @@ enableWsi ? true, }: let - joshShaders = fetchFromGitHub { - owner = "Joshua-Ashton"; + frogShaders = fetchFromGitHub { + owner = "misyltoad"; repo = "GamescopeShaders"; rev = "v0.1"; hash = "sha256-gR1AeAHV/Kn4ntiEDUSPxASLMFusV6hgSGrTbMCBUZA="; @@ -171,7 +171,7 @@ stdenv.mkDerivation (finalAttrs: { # Install ReShade shaders mkdir -p $out/share/gamescope/reshade - cp -r ${joshShaders}/* $out/share/gamescope/reshade/ + cp -r ${frogShaders}/* $out/share/gamescope/reshade/ ''; passthru.updateScript = nix-update-script { };