From 1096a6d77e0cfad231980d8cbc1087b29721120d Mon Sep 17 00:00:00 2001 From: Johan Thomsen Date: Wed, 18 Nov 2020 16:19:14 +0100 Subject: [PATCH] vector: include the "unix" cargo feature if targetPlatform isUnix --- pkgs/tools/misc/vector/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/misc/vector/default.nix b/pkgs/tools/misc/vector/default.nix index 701e86dbf90..1525d3a2296 100644 --- a/pkgs/tools/misc/vector/default.nix +++ b/pkgs/tools/misc/vector/default.nix @@ -8,6 +8,8 @@ then [ "jemallocator" "rdkafka" "rdkafka/dynamic_linking" ] else [ "leveldb" "leveldb/leveldb-sys-2" "jemallocator" "rdkafka" "rdkafka/dynamic_linking" ]) ++ + (lib.optional stdenv.targetPlatform.isUnix "unix") + ++ [ "sinks" "sources" "transforms" ]) , coreutils , CoreServices