sentry-native: 0.6.7 -> 0.7.0

This commit is contained in:
Daniel Fahey 2024-03-08 15:41:51 +00:00 committed by GitHub
parent 399dc3f09e
commit fc88a67b54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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 ];
};
}