-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Expand file tree
/
Copy pathpackage.nix
More file actions
50 lines (43 loc) · 986 Bytes
/
package.nix
File metadata and controls
50 lines (43 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
lib,
stdenv,
fetchFromGitHub,
cmake,
curl,
breakpad,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "sentry-native";
version = "0.13.1";
src = fetchFromGitHub {
owner = "getsentry";
repo = "sentry-native";
tag = finalAttrs.version;
hash = "sha256-AKQtqtcUz8ni3/38VezKBppjmmAAv7WQ9/pG6F6mJXA=";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
curl
breakpad
];
cmakeBuildType = "RelWithDebInfo";
cmakeFlags = [
"-DSENTRY_BREAKPAD_SYSTEM=On"
"-DSENTRY_BACKEND=breakpad"
];
meta = {
homepage = "https://github.com/getsentry/sentry-native";
description = "Sentry SDK for C, C++ and native applications";
changelog = "https://github.com/getsentry/sentry-native/blob/${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
wheelsandmetal
daniel-fahey
];
};
})