Unverified Commit 8818a48e authored by K900's avatar K900 Committed by GitHub
Browse files

breakpad: 2023.06.01 -> 2024.02.16 (#431947)

parents 04d778ad 16ba3f82
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
{
  lib,
  boost,
  breakpad,
  ceres-solver,
  cgal,
  cmake,
@@ -43,7 +42,6 @@ stdenv.mkDerivation rec {

  buildInputs = [
    boostWithZstd
    breakpad
    ceres-solver
    cgal
    eigen
+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 = ''