depot/third_party/nixpkgs/pkgs/development/libraries/sentry-native/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

28 lines
768 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, curl, breakpad, pkg-config }:
stdenv.mkDerivation rec {
pname = "sentry-native";
version = "0.4.14";
src = fetchFromGitHub {
owner = "getsentry";
repo = "sentry-native";
rev = version;
sha256 = "sha256-DMVMS7Mshglg7+QkHzZvmZ2dhEFbQRqcHU98JiaysCg=";
};
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 ];
};
}