slade, sladeUnstable: patch wxGTK to work with 3.2.4

authored by

Evils and committed by
Yt
5049069a 8a621a25

+20 -2
+20 -2
pkgs/top-level/all-packages.nix
··· 37404 rbdoom-3-bfg = callPackage ../games/doom-ports/rbdoom-3-bfg { }; 37405 37406 slade = callPackage ../games/doom-ports/slade { 37407 - wxGTK = wxGTK32.override { 37408 withWebKit = true; 37409 }; 37410 }; 37411 37412 sladeUnstable = callPackage ../games/doom-ports/slade/git.nix { 37413 - wxGTK = wxGTK32.override { 37414 withWebKit = true; 37415 }; 37416 };
··· 37404 rbdoom-3-bfg = callPackage ../games/doom-ports/rbdoom-3-bfg { }; 37405 37406 slade = callPackage ../games/doom-ports/slade { 37407 + wxGTK = (wxGTK32.overrideAttrs { 37408 + patches = [ 37409 + (fetchpatch { # required to run slade 3.2.4 on wxGTK 3.2.4, see PR #266945 37410 + url = "https://github.com/wxWidgets/wxWidgets/commit/425d9455e8307c1267a79d47d77e3dafeb4d86de.patch"; 37411 + excludes = [ "docs/changes.txt" ]; 37412 + revert = true; 37413 + hash = "sha256-6LOYLDLtVCHxNdHAWv3zhlCsljIpi//RJb9XVLGD5hM="; 37414 + }) 37415 + ]; 37416 + }).override { 37417 withWebKit = true; 37418 }; 37419 }; 37420 37421 sladeUnstable = callPackage ../games/doom-ports/slade/git.nix { 37422 + wxGTK = (wxGTK32.overrideAttrs { 37423 + patches = [ 37424 + (fetchpatch { # required to run sladeUnstable unstable-2023-09-30 on wxGTK 3.2.4, see PR #266945 37425 + url = "https://github.com/wxWidgets/wxWidgets/commit/425d9455e8307c1267a79d47d77e3dafeb4d86de.patch"; 37426 + excludes = [ "docs/changes.txt" ]; 37427 + revert = true; 37428 + hash = "sha256-6LOYLDLtVCHxNdHAWv3zhlCsljIpi//RJb9XVLGD5hM="; 37429 + }) 37430 + ]; 37431 + }).override { 37432 withWebKit = true; 37433 }; 37434 };