mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 05:54:24 +00:00
39 lines
997 B
Nix
39 lines
997 B
Nix
{ rustPlatform
|
|
, fetchFromGitHub
|
|
, lib
|
|
, openssl
|
|
, pkg-config
|
|
, stdenv
|
|
, CoreServices
|
|
, Security
|
|
, SystemConfiguration
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "sentry-cli";
|
|
version = "2.28.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "getsentry";
|
|
repo = "sentry-cli";
|
|
rev = version;
|
|
sha256 = "sha256-KC+2ZJGMd5xjekRRgkKB09v9+h6CS94fs6/Px3Pn54Q=";
|
|
};
|
|
doCheck = false;
|
|
|
|
# Needed to get openssl-sys to use pkgconfig.
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ CoreServices Security SystemConfiguration ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
cargoHash = "sha256-XaFRA0lpTuuV/bfEFR2JzyQIPEBdfFSuhBrKNASnfdo=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://docs.sentry.io/cli/";
|
|
license = licenses.bsd3;
|
|
description = "A command line utility to work with Sentry";
|
|
changelog = "https://github.com/getsentry/sentry-cli/raw/${version}/CHANGELOG.md";
|
|
maintainers = with maintainers; [ rizary loewenheim ];
|
|
};
|
|
}
|