breakpad: gcc-14 fix (#369787)

authored by Emily and committed by GitHub 4c662ddd a64a238b

+9
+9
pkgs/by-name/br/breakpad/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchgit, 5 + fetchpatch, 5 6 zlib, 6 7 }: 7 8 let ··· 21 22 rev = "v${finalAttrs.version}"; 22 23 hash = "sha256-8AkC/8oX4OWAcV21laJ0AeMRB9G04rFc6UJFy7Wus4A="; 23 24 }; 25 + 26 + patches = [ 27 + (fetchpatch { 28 + name = "gcc-14-fixes.patch"; 29 + url = "https://github.com/google/breakpad/commit/898a997855168c0e6a689072fefba89246271a5d.patch"; 30 + hash = "sha256-OxodMx7XfKiD9j6b8oFvloslYagSSpQn7BPdpMVOoDY="; 31 + }) 32 + ]; 24 33 25 34 buildInputs = [ zlib ]; 26 35