Commit 16ba3f82 authored by K900's avatar K900
Browse files

breakpad: 2023.06.01 -> 2024.02.16

parent 3225149f
Loading
Loading
Loading
Loading
+2 −11
Original line number Diff line number Diff line
@@ -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 = ''