vector: 0.20.0 -> 0.20.1

This commit is contained in:
happysalada 2022-04-08 07:52:45 -04:00 committed by Yt
parent 3620fcded0
commit f35d4e3c73

View file

@ -15,6 +15,7 @@
, CoreServices
, tzdata
, cmake
, perl
# kafka is optional but one of the most used features
, enableKafka ? true
# TODO investigate adding "api" "api-client" "vrl-cli" and various "vendor-*"
@ -29,7 +30,7 @@
let
pname = "vector";
version = "0.20.0";
version = "0.20.1";
in
rustPlatform.buildRustPackage {
inherit pname version;
@ -38,11 +39,11 @@ rustPlatform.buildRustPackage {
owner = "timberio";
repo = pname;
rev = "v${version}";
sha256 = "sha256-OkT1Gj66Z4sj3YtaMlU1lbquTECPG34qydXGbx24Ig4=";
sha256 = "sha256-0xC6CpmSTRt7zj6RHqtjbMXWEiMUOdIymWVGI8Js+70=";
};
cargoSha256 = "sha256-O2uy0wK4pdwjAYzIKJnCzJVsA3n+U+dw731y7OPJfP0=";
nativeBuildInputs = [ pkg-config cmake ];
cargoSha256 = "sha256-NLMyE9+iYFWuMmL50TeLZVvlHkIDaSZYJwXK4ykGrb8=";
nativeBuildInputs = [ pkg-config cmake perl ];
buildInputs = [ oniguruma openssl protobuf rdkafka zstd ]
++ lib.optionals stdenv.isDarwin [ Security libiconv coreutils CoreServices ];