diff --git a/pkgs/by-name/br/breakpad/package.nix b/pkgs/by-name/br/breakpad/package.nix index b6785405496c..9853e94d8975 100644 --- a/pkgs/by-name/br/breakpad/package.nix +++ b/pkgs/by-name/br/breakpad/package.nix @@ -13,17 +13,24 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "breakpad"; - version = "2024.02.16"; + __structuredAttrs = true; + src = fetchgit { url = "https://chromium.googlesource.com/breakpad/breakpad"; rev = "v${finalAttrs.version}"; hash = "sha256-yk+TSzjmAr9QMTYduKVe/Aizph/NNmSS385pvGJckiQ="; }; + strictDeps = true; + + enableParallelBuilding = true; + buildInputs = [ zlib ]; + configureFlags = lib.optionals stdenv.hostPlatform.isMusl [ "--disable-tools" ]; + postUnpack = '' ln -s ${lss} $sourceRoot/src/third_party/lss '';