Skip to content

Commit 6b081cd

Browse files
committed
microsandbox: Add version 0.6.1
1 parent afe3992 commit 6b081cd

1 file changed

Lines changed: 53 additions & 0 deletions

File tree

bucket/microsandbox.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"version": "0.6.1",
3+
"description": "Easy, fast, local microVMs for untrusted workloads",
4+
"homepage": "https://microsandbox.dev",
5+
"license": "Apache-2.0",
6+
"notes": "On first install, open a new terminal before running 'msb'; it will not be found in your current terminal because Scoop's PATH and environment changes only take effect in new sessions.",
7+
"suggest": {
8+
"vcredist": "extras/vcredist2022"
9+
},
10+
"architecture": {
11+
"64bit": {
12+
"url": "https://github.com/superradcompany/microsandbox/releases/download/v0.6.1/microsandbox-windows-x86_64.zip",
13+
"hash": "18e34b8c0685d213fc4d50328239ca63b8bb14e95ea83de661b720b4301bada6"
14+
},
15+
"arm64": {
16+
"url": "https://github.com/superradcompany/microsandbox/releases/download/v0.6.1/microsandbox-windows-aarch64.zip",
17+
"hash": "f9cd7e0e645b5b406ab86d18398e1cc4b33ee964be25403eb9ee2ab22422a5b7"
18+
}
19+
},
20+
"installer": {
21+
"script": [
22+
"New-Item -ItemType Directory -Force \"$persist_dir\\bin\", \"$persist_dir\\lib\" | Out-Null",
23+
"Copy-Item \"$dir\\msb.exe\" \"$persist_dir\\bin\\msb.exe\" -Force",
24+
"Copy-Item \"$dir\\libkrunfw.dll\" \"$persist_dir\\lib\\libkrunfw.dll\" -Force",
25+
"Add-Path -Path \"$persist_dir\\bin\" -Global:$global -Force"
26+
]
27+
},
28+
"env_set": {
29+
"MSB_HOME": "$persist_dir"
30+
},
31+
"uninstaller": {
32+
"script": [
33+
"$global = installed $app $true",
34+
"Remove-Path -Path \"$persist_dir\\bin\" -Global:$global -Force"
35+
]
36+
},
37+
"checkver": {
38+
"github": "https://github.com/superradcompany/microsandbox"
39+
},
40+
"autoupdate": {
41+
"architecture": {
42+
"64bit": {
43+
"url": "https://github.com/superradcompany/microsandbox/releases/download/v$version/microsandbox-windows-x86_64.zip"
44+
},
45+
"arm64": {
46+
"url": "https://github.com/superradcompany/microsandbox/releases/download/v$version/microsandbox-windows-aarch64.zip"
47+
}
48+
},
49+
"hash": {
50+
"url": "https://github.com/superradcompany/microsandbox/releases/download/v$version/checksums.sha256"
51+
}
52+
}
53+
}

0 commit comments

Comments
 (0)