3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/sentry-native/default.nix

29 lines
768 B
Nix
Raw Normal View History

2021-07-20 12:30:03 +01:00
{ lib, stdenv, fetchFromGitHub, cmake, curl, breakpad, pkg-config }:
stdenv.mkDerivation rec {
pname = "sentry-native";
2021-12-24 07:51:08 +00:00
version = "0.4.13";
2021-07-20 12:30:03 +01:00
src = fetchFromGitHub {
owner = "getsentry";
repo = "sentry-native";
rev = version;
2021-12-24 07:51:08 +00:00
sha256 = "sha256-btgv/GwwQhT/DtWhjM/g081UYLT7E76ZhqXZdMiIWsk=";
2021-07-20 12:30:03 +01:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ curl breakpad pkg-config ];
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=RelWithDebInfo"
"-DSENTRY_BREAKPAD_SYSTEM=On"
];
meta = with lib; {
homepage = "https://github.com/getsentry/sentry-native";
description = "Sentry SDK for C, C++ and native applications.";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ wheelsandmetal ];
};
}