From cce4fdbcfd7726231b750bc01e88bd0e7463f73c Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Wed, 28 Sep 2022 14:47:36 -0500 Subject: [PATCH] vector: update platforms list to include aarch64-darwin --- pkgs/tools/misc/vector/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/vector/default.nix b/pkgs/tools/misc/vector/default.nix index a65cd60af88f..5f8074cbdaff 100644 --- a/pkgs/tools/misc/vector/default.nix +++ b/pkgs/tools/misc/vector/default.nix @@ -108,6 +108,6 @@ rustPlatform.buildRustPackage { homepage = "https://github.com/timberio/vector"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ thoughtpolice happysalada ]; - platforms = with platforms; linux; + platforms = [ "aarch64-linux" "x86_64-linux" "aarch64-darwin" ]; }; }