10 stdenv.mkDerivation rec {
11 pname = "sentry-native";
14 src = fetchFromGitHub {
16 repo = "sentry-native";
18 hash = "sha256-IDtymBIG5ilTHyFZ/EA2YJK72wvz7kHn2o9gbu7ejKM=";
31 cmakeBuildType = "RelWithDebInfo";
34 "-DSENTRY_BREAKPAD_SYSTEM=On"
35 "-DSENTRY_BACKEND=breakpad"
39 homepage = "https://github.com/getsentry/sentry-native";
40 description = "Sentry SDK for C, C++ and native applications";
41 changelog = "https://github.com/getsentry/sentry-native/blob/${version}/CHANGELOG.md";
42 license = licenses.mit;
43 platforms = platforms.linux;
44 maintainers = with maintainers; [ wheelsandmetal daniel-fahey ];