Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
883 B
Nix
39 lines
883 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
zlib,
|
|
}:
|
|
let
|
|
lss = fetchgit {
|
|
url = "https://chromium.googlesource.com/linux-syscall-support";
|
|
rev = "v2022.10.12";
|
|
hash = "sha256-rF10v5oH4u9i9vnmFCVVl2Ew3h+QTiOsW64HeB0nRQU=";
|
|
};
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "breakpad";
|
|
|
|
version = "2024.02.16";
|
|
|
|
src = fetchgit {
|
|
url = "https://chromium.googlesource.com/breakpad/breakpad";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-yk+TSzjmAr9QMTYduKVe/Aizph/NNmSS385pvGJckiQ=";
|
|
};
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
postUnpack = ''
|
|
ln -s ${lss} $sourceRoot/src/third_party/lss
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Open-source multi-platform crash reporting system";
|
|
homepage = "https://chromium.googlesource.com/breakpad";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ berberman ];
|
|
platforms = platforms.all;
|
|
};
|
|
})
|