b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPecl
|
|
, cargo
|
|
, rustc
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, curl
|
|
, pcre2
|
|
, libiconv
|
|
, darwin
|
|
}:
|
|
|
|
buildPecl rec {
|
|
pname = "ddtrace";
|
|
version = "0.92.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DataDog";
|
|
repo = "dd-trace-php";
|
|
rev = version;
|
|
fetchSubmodules = true;
|
|
hash = "sha256-8h05ar16s1r1movP7zJgOsVAXJbU+Wi+wzmgVZ3nPbw=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.importCargoLock {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"datadog-profiling-4.0.0" = "sha256-HoRELMxNkxkISscBksH4wMj/cuK/XQANr2WQUKwrevg=";
|
|
};
|
|
};
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-O2";
|
|
|
|
nativeBuildInputs = [
|
|
cargo
|
|
rustc
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
rustPlatform.bindgenHook
|
|
rustPlatform.cargoSetupHook
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk_11_0.rustPlatform.bindgenHook
|
|
darwin.apple_sdk_11_0.rustPlatform.cargoSetupHook
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
pcre2
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk_11_0.frameworks.CoreFoundation
|
|
darwin.apple_sdk_11_0.frameworks.Security
|
|
darwin.apple_sdk_11_0.Libsystem
|
|
libiconv
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/DataDog/dd-trace-php/blob/${src.rev}/CHANGELOG.md";
|
|
description = "Datadog Tracing PHP Client";
|
|
homepage = "https://github.com/DataDog/dd-trace-php";
|
|
license = with lib.licenses; [ asl20 bsd3 ];
|
|
maintainers = lib.teams.php.members;
|
|
};
|
|
}
|