summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2022-07-11 20:28:29 -0400
committerYt <happysalada@proton.me>2022-07-11 20:51:00 -0400
commitedd709dcfc0e15e6b8b50c0dc320a6d16654b6f2 (patch)
treedd373762117c2f3ea517a359d7b1685a8ce07c2b
parentMerge pull request #180014 from aanderse/kodi.packages.invidious (diff)
downloadnixpkgs-edd709dcfc0e15e6b8b50c0dc320a6d16654b6f2.tar.gz
vector: 0.22.3 -> 0.23.0
-rw-r--r--pkgs/tools/misc/vector/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/vector/default.nix b/pkgs/tools/misc/vector/default.nix
index 08617255a23f..0fe8734d4ca7 100644
--- a/pkgs/tools/misc/vector/default.nix
+++ b/pkgs/tools/misc/vector/default.nix
@@ -24,13 +24,13 @@
, features ? ([ "sinks" "sources" "transforms" "vrl-cli" ]
# the second feature flag is passed to the rdkafka dependency
# building on linux fails without this feature flag (both x86_64 and AArch64)
- ++ lib.optionals enableKafka [ "rdkafka/gssapi-vendored" ]
+ ++ lib.optionals enableKafka [ "rdkafka?/gssapi-vendored" ]
++ lib.optional stdenv.targetPlatform.isUnix "unix")
}:
let
pname = "vector";
- version = "0.22.3";
+ version = "0.23.0";
in
rustPlatform.buildRustPackage {
inherit pname version;
@@ -39,10 +39,10 @@ rustPlatform.buildRustPackage {
owner = "vectordotdev";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-62oPttkdahTeMsd9lpd9/tc95kluVJuWxzP94i+gWhA=";
+ sha256 = "sha256-Y1RysuCWvdbqckW54r1uH/K9YTuAZk8T4M3HRGFm0EM=";
};
- cargoSha256 = "sha256-WWX47pbva7ZmPR6hBstJ5VqOwu3mkhhsHK3LHHqQjDE=";
+ cargoSha256 = "sha256-VBmJfRCwSv3t5DPzVj92ajGYk5Ju8xqr4v7IDU17498=";
nativeBuildInputs = [ pkg-config cmake perl ];
buildInputs = [ oniguruma openssl protobuf rdkafka zstd ]
++ lib.optionals stdenv.isDarwin [ Security libiconv coreutils CoreServices ];