From 16ba3f829441ce3dbd74ccfd95c7068be02fdea8 Mon Sep 17 00:00:00 2001 From: K900 Date: Fri, 8 Aug 2025 10:50:35 +0300 Subject: [PATCH] breakpad: 2023.06.01 -> 2024.02.16 --- pkgs/by-name/br/breakpad/package.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/br/breakpad/package.nix b/pkgs/by-name/br/breakpad/package.nix index a3bdd857bc40..a62d131d5970 100644 --- a/pkgs/by-name/br/breakpad/package.nix +++ b/pkgs/by-name/br/breakpad/package.nix @@ -2,7 +2,6 @@ lib, stdenv, fetchgit, - fetchpatch, zlib, }: let @@ -15,22 +14,14 @@ in stdenv.mkDerivation (finalAttrs: { pname = "breakpad"; - version = "2023.06.01"; + version = "2024.02.16"; src = fetchgit { url = "https://chromium.googlesource.com/breakpad/breakpad"; rev = "v${finalAttrs.version}"; - hash = "sha256-8AkC/8oX4OWAcV21laJ0AeMRB9G04rFc6UJFy7Wus4A="; + hash = "sha256-yk+TSzjmAr9QMTYduKVe/Aizph/NNmSS385pvGJckiQ="; }; - patches = [ - (fetchpatch { - name = "gcc-14-fixes.patch"; - url = "https://github.com/google/breakpad/commit/898a997855168c0e6a689072fefba89246271a5d.patch"; - hash = "sha256-OxodMx7XfKiD9j6b8oFvloslYagSSpQn7BPdpMVOoDY="; - }) - ]; - buildInputs = [ zlib ]; postUnpack = ''