sentry-native: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-11 10:43:28 +01:00 committed by Frederik Rietdijk
parent 5c4606376c
commit 57b0ac48c7

View File

@ -1,4 +1,11 @@
{ lib, stdenv, fetchFromGitHub, cmake, curl, breakpad, pkg-config }:
{ lib
, stdenv
, fetchFromGitHub
, cmake
, curl
, breakpad
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "sentry-native";
@ -8,11 +15,19 @@ stdenv.mkDerivation rec {
owner = "getsentry";
repo = "sentry-native";
rev = version;
sha256 = "sha256-zeJGgtqEITK1fQtqFXwh+kpaS9Ky+RSY/uxZ2as8YyM=";
hash = "sha256-zeJGgtqEITK1fQtqFXwh+kpaS9Ky+RSY/uxZ2as8YyM=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ curl breakpad ];
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
curl
breakpad
];
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=RelWithDebInfo"
"-DSENTRY_BREAKPAD_SYSTEM=On"
@ -20,7 +35,8 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/getsentry/sentry-native";
description = "Sentry SDK for C, C++ and native applications.";
description = "Sentry SDK for C, C++ and native applications";
changelog = "https://github.com/getsentry/sentry-native/blob/${version}/CHANGELOG.md";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ wheelsandmetal ];