From db3046ce66c7bcd243ff6cd8188c129085d181fa Mon Sep 17 00:00:00 2001
From: Paul Moore 
Date: Tue, 24 Oct 2023 07:45:10 +0100
Subject: [PATCH] nu@0.86.0: Add arm64 variant (#5206)
* Use the full binary for nushell
* Update nu.json
---------
Co-authored-by: Rashil Gandhi <46838874+rashil2000@users.noreply.github.com>
---
 bucket/nu.json | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/bucket/nu.json b/bucket/nu.json
index db632576db..c4cce48752 100644
--- a/bucket/nu.json
+++ b/bucket/nu.json
@@ -5,8 +5,12 @@
     "license": "MIT",
     "architecture": {
         "64bit": {
-            "url": "https://github.com/nushell/nushell/releases/download/0.86.0/nu-0.86.0-x86_64-pc-windows-msvc.zip",
-            "hash": "64e381a82289594e5cc2053cdd3c34e597affd2419acdd1645a983f9953aaba5"
+            "url": "https://github.com/nushell/nushell/releases/download/0.86.0/nu-0.86.0-x86_64-windows-msvc-full.zip",
+            "hash": "2aa597719f3afb28d43fb4b718efb2fc8d00df02e106bbfa5e802bf9caf9d8e3"
+        },
+        "arm64": {
+            "url": "https://github.com/nushell/nushell/releases/download/0.86.0/nu-0.86.0-aarch64-windows-msvc-full.zip",
+            "hash": "713a5dcba063be48dd4a0da90e144a25fdf0c3bf695ef6737659e3189b602e83"
         }
     },
     "bin": "nu.exe",
@@ -16,7 +20,10 @@
     "autoupdate": {
         "architecture": {
             "64bit": {
-                "url": "https://github.com/nushell/nushell/releases/download/$version/nu-$version-x86_64-pc-windows-msvc.zip"
+                "url": "https://github.com/nushell/nushell/releases/download/$version/nu-$version-x86_64-windows-msvc-full.zip"
+            },
+            "arm64": {
+                "url": "https://github.com/nushell/nushell/releases/download/$version/nu-$version-aarch64-windows-msvc-full.zip"
             }
         }
     }