audacity: patch wxGTK to work with 3.2.4

authored by

Evils and committed by
Yt
8a621a25 59267534

+10
+10
pkgs/top-level/all-packages.nix
··· 30474 30474 30475 30475 audacity = callPackage ../applications/audio/audacity { 30476 30476 inherit (darwin.apple_sdk.frameworks) AppKit CoreAudioKit; 30477 + wxGTK32 = wxGTK32.overrideAttrs { 30478 + patches = [ 30479 + (fetchpatch { # required to run audacity 3.3.3 on wxGTK 3.2.4, see PR #266945 30480 + url = "https://github.com/wxWidgets/wxWidgets/commit/425d9455e8307c1267a79d47d77e3dafeb4d86de.patch"; 30481 + excludes = [ "docs/changes.txt" ]; 30482 + revert = true; 30483 + hash = "sha256-6LOYLDLtVCHxNdHAWv3zhlCsljIpi//RJb9XVLGD5hM="; 30484 + }) 30485 + ]; 30486 + }; 30477 30487 }; 30478 30488 30479 30489 audio-recorder = callPackage ../applications/audio/audio-recorder { };