nixpkgs/pkgs/tools/misc/vector/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

120 lines
3.9 KiB
Nix
Raw Normal View History

2021-04-01 12:22:51 +02:00
{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
2021-04-01 12:22:51 +02:00
, rustPlatform
, pkg-config
2021-06-11 13:18:56 +02:00
, llvmPackages
, openssl
2021-04-01 12:22:51 +02:00
, protobuf
2021-06-11 13:18:56 +02:00
, rdkafka
, oniguruma
, zstd
2021-04-01 12:22:51 +02:00
, Security
, libiconv
, coreutils
, CoreServices
2021-06-11 13:18:56 +02:00
, tzdata
2021-12-30 13:51:28 +01:00
, cmake
2022-04-08 13:52:45 +02:00
, perl
2022-09-02 11:41:44 +02:00
# nix has a problem with the `?` in the feature list
# enabling kafka will produce a vector with no features at all
, enableKafka ? false
# TODO investigate adding "vrl-cli" and various "vendor-*"
2021-06-11 13:18:56 +02:00
# "disk-buffer" is using leveldb TODO: investigate how useful
# it would be, perhaps only for massive scale?
, features ? ([ "api" "api-client" "enrichment-tables" "sinks" "sources" "transforms" "vrl-cli" ]
2021-06-11 13:18:56 +02:00
# the second feature flag is passed to the rdkafka dependency
# building on linux fails without this feature flag (both x86_64 and AArch64)
2022-09-02 11:41:44 +02:00
++ lib.optionals enableKafka [ "rdkafka?/gssapi-vendored" ]
2021-11-16 01:19:01 +01:00
++ lib.optional stdenv.targetPlatform.isUnix "unix")
2023-01-19 23:41:40 +01:00
, nix-update-script
}:
2021-10-24 03:12:05 +02:00
let
pname = "vector";
2023-03-07 04:07:17 +01:00
version = "0.28.1";
2021-10-24 03:12:05 +02:00
in
rustPlatform.buildRustPackage {
inherit pname version;
src = fetchFromGitHub {
owner = "vectordotdev";
2021-04-01 12:22:51 +02:00
repo = pname;
rev = "v${version}";
2023-03-07 04:07:17 +01:00
sha256 = "sha256-hBEw5sAxex4o/b1nr60dEwZs7nosXU7pUChT1VoI25k=";
};
2023-03-07 04:07:17 +01:00
cargoSha256 = "sha256-F47ZIxFsp23sPe1nc3UwLZEXJ5lzKiuSIujBxf4fEBo=";
2022-04-08 13:52:45 +02:00
nativeBuildInputs = [ pkg-config cmake perl ];
2021-06-11 13:18:56 +02:00
buildInputs = [ oniguruma openssl protobuf rdkafka zstd ]
2021-08-07 12:07:36 +02:00
++ lib.optionals stdenv.isDarwin [ Security libiconv coreutils CoreServices ];
# needed for internal protobuf c wrapper library
2021-04-01 12:22:51 +02:00
PROTOC = "${protobuf}/bin/protoc";
PROTOC_INCLUDE = "${protobuf}/include";
2021-06-11 13:18:56 +02:00
RUSTONIG_SYSTEM_LIBONIG = true;
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
2021-11-16 01:19:01 +01:00
TZDIR = "${tzdata}/share/zoneinfo";
2022-04-16 12:38:53 +02:00
# needed to dynamically link rdkafka
CARGO_FEATURE_DYNAMIC_LINKING=1;
2021-11-16 01:19:01 +01:00
buildNoDefaultFeatures = true;
buildFeatures = features;
2021-06-11 13:18:56 +02:00
# TODO investigate compilation failure for tests
2022-06-03 05:52:37 +02:00
# there are about 100 tests failing (out of 1100) for version 0.22.0
2022-04-23 18:00:18 +02:00
doCheck = false;
2021-11-16 01:19:01 +01:00
checkFlags = [
# tries to make a network access
"--skip=sinks::loki::tests::healthcheck_grafana_cloud"
# flaky on linux-aarch64
"--skip=kubernetes::api_watcher::tests::test_stream_errors"
# flaky on linux-x86_64
"--skip=sources::socket::test::tcp_with_tls_intermediate_ca"
"--skip=sources::host_metrics::cgroups::tests::generates_cgroups_metrics"
2022-01-26 13:53:10 +01:00
"--skip=sources::aws_kinesis_firehose::tests::aws_kinesis_firehose_forwards_events"
"--skip=sources::aws_kinesis_firehose::tests::aws_kinesis_firehose_forwards_events_gzip_request"
"--skip=sources::aws_kinesis_firehose::tests::handles_acknowledgement_failure"
2021-11-16 01:19:01 +01:00
];
# recent overhauls of DNS support in 0.9 mean that we try to resolve
# vector.dev during the checkPhase, which obviously isn't going to work.
# these tests in the DNS module are trivial though, so stubbing them out is
# fine IMO.
#
# the geoip transform yields maxmindb.so which contains references to rustc.
# neither figured out why the shared object is included in the output
# (it doesn't seem to be a runtime dependencies of the geoip transform),
# nor do I know why it depends on rustc.
# However, in order for the closure size to stay at a reasonable level,
# transforms-geoip is patched out of Cargo.toml for now - unless explicitly asked for.
postPatch = ''
substituteInPlace ./src/dns.rs \
--replace "#[tokio::test]" ""
${lib.optionalString (!builtins.elem "transforms-geoip" features) ''
substituteInPlace ./Cargo.toml --replace '"transforms-geoip",' ""
''}
'';
passthru = {
inherit features;
2023-01-19 23:41:40 +01:00
updateScript = nix-update-script { };
};
meta = with lib; {
description = "A high-performance logs, metrics, and events router";
2021-04-01 12:22:51 +02:00
homepage = "https://github.com/timberio/vector";
license = with licenses; [ asl20 ];
2020-11-30 08:34:53 +01:00
maintainers = with maintainers; [ thoughtpolice happysalada ];
2022-10-05 22:48:28 +02:00
platforms = with platforms; all;
};
}