From 2ff989da5fcb9bb7c650b62a47babf2dd37f98a0 Mon Sep 17 00:00:00 2001 From: Kauan Decarli Date: Wed, 18 Feb 2026 22:15:49 -0300 Subject: [PATCH 1/3] thcrap-steam-proton-wrapper: update repo owner --- pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix b/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix index ff1aa917abae..96b620681664 100644 --- a/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix +++ b/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation { version = "0-unstable-2024-04-03"; src = fetchFromGitHub { - owner = "tactikauan"; + owner = "nerusuki"; repo = "thcrap-steam-proton-wrapper"; rev = "2b636c3f5f1ce1b9b41f731aa9397aa68d2ce66b"; hash = "sha256-J2O8F75NMdsxSaNVr8zLf+vLEJE6CHqWQIIscuuJZ3o="; @@ -44,7 +44,7 @@ stdenv.mkDerivation { meta = { description = "Wrapper script for launching the official Touhou games on Steam with patches through Proton on GNU/Linux"; - homepage = "https://github.com/tactikauan/thcrap-steam-proton-wrapper"; + homepage = "https://github.com/nerusuki/thcrap-steam-proton-wrapper"; license = lib.licenses.unlicense; maintainers = with lib.maintainers; [ ashuramaruzxc ]; platforms = [ From 72dc0b04b41e69d7b58c48369ff3c5c783ed4b81 Mon Sep 17 00:00:00 2001 From: Kauan Decarli Date: Wed, 18 Feb 2026 22:38:47 -0300 Subject: [PATCH 2/3] thcrap-steam-proton-wrapper: remove zenity dependency The script is meant to run from within Steam and use the zenity binary bundled in the Steam runtime. While having zenity as a dependency has the benefit of bringing a newer version, it has caused compatibility issues with the Steam runtime libraries. --- pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix b/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix index 96b620681664..b4df96df288e 100644 --- a/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix +++ b/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix @@ -5,7 +5,6 @@ makeWrapper, bash, subversion, - zenity, }: stdenv.mkDerivation { pname = "thcrap-proton"; @@ -37,7 +36,6 @@ stdenv.mkDerivation { lib.makeBinPath [ bash subversion - zenity ] } ''; From dea75373f2eb9f7b4dfc0e9ba8eea6416530a8f3 Mon Sep 17 00:00:00 2001 From: Kauan Decarli Date: Sat, 9 May 2026 14:42:58 -0300 Subject: [PATCH 3/3] thcrap-steam-proton-wrapper: 0-unstable-2024-04-03 -> 0-unstable-2026-02-11 --- pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix b/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix index b4df96df288e..a287499f670b 100644 --- a/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix +++ b/pkgs/by-name/th/thcrap-steam-proton-wrapper/package.nix @@ -8,13 +8,13 @@ }: stdenv.mkDerivation { pname = "thcrap-proton"; - version = "0-unstable-2024-04-03"; + version = "0-unstable-2026-02-11"; src = fetchFromGitHub { owner = "nerusuki"; repo = "thcrap-steam-proton-wrapper"; - rev = "2b636c3f5f1ce1b9b41f731aa9397aa68d2ce66b"; - hash = "sha256-J2O8F75NMdsxSaNVr8zLf+vLEJE6CHqWQIIscuuJZ3o="; + rev = "a5edfe44ead2df2e6bca54bd738ae0dc3284e679"; + hash = "sha256-4RTVfcwlYW+KPyPIon0X1d4SPsF6cFkRSXBfe4yzAyQ="; }; buildInputs = [ subversion ];