Merge pull request #294299 from daniel-fahey/sentry-native

sentry-native: 0.6.7 -> 0.7.0
This commit is contained in:
Weijia Wang 2024-03-08 21:02:35 +01:00 committed by GitHub
commit aa20d0119b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 3 deletions

View file

@ -4247,6 +4247,12 @@
githubId = 49398;
name = "Daniël de Kok";
};
daniel-fahey = {
name = "Daniel Fahey";
email = "daniel.fahey+nixpkgs@pm.me";
github = "daniel-fahey";
githubId = 7294692;
};
danielfullmer = {
email = "danielrf12@gmail.com";
github = "danielfullmer";

View file

@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "sentry-native";
version = "0.6.7";
version = "0.7.0";
src = fetchFromGitHub {
owner = "getsentry";
repo = "sentry-native";
rev = version;
hash = "sha256-pEFfs8xjc+6r+60aJF4Sjjy/oSU/+ADWgOBpS3t9rWI=";
hash = "sha256-e2VjQ3U72X+bwRAi/6StLDWT8tf/MjatnmC/+jCgzTo=";
};
nativeBuildInputs = [
@ -32,6 +32,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [
"-DSENTRY_BREAKPAD_SYSTEM=On"
"-DSENTRY_BACKEND=breakpad"
];
meta = with lib; {
@ -40,6 +41,6 @@ stdenv.mkDerivation rec {
changelog = "https://github.com/getsentry/sentry-native/blob/${version}/CHANGELOG.md";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ wheelsandmetal ];
maintainers = with maintainers; [ wheelsandmetal daniel-fahey ];
};
}