openmsx: patch view operator for gcc14+

+9
+9
pkgs/by-name/op/openmsx/package.nix
··· 1 { 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 pkg-config, 6 SDL2, ··· 31 hash = "sha256-iY+oZ7fHZnnEGunM4kOxOGH2Biqj2PfdLhbT8J4mYrA="; 32 fetchSubmodules = true; 33 }; 34 35 nativeBuildInputs = [ 36 pkg-config
··· 1 { 2 lib, 3 stdenv, 4 + fetchpatch2, 5 fetchFromGitHub, 6 pkg-config, 7 SDL2, ··· 32 hash = "sha256-iY+oZ7fHZnnEGunM4kOxOGH2Biqj2PfdLhbT8J4mYrA="; 33 fetchSubmodules = true; 34 }; 35 + 36 + patches = [ 37 + (fetchpatch2 { 38 + name = "fix_view_operator.patch"; 39 + url = "https://aur.archlinux.org/cgit/aur.git/plain/fix_view_operator.patch?h=openmsx&id=aa63ce478c7f528d60b79bcf4c9427101caa3b94"; 40 + hash = "sha256-3wmUJQrM5P3zfFJt+HF32AchNSqCgFTnQ508Bztg4uA="; 41 + }) 42 + ]; 43 44 nativeBuildInputs = [ 45 pkg-config