-
-
Notifications
You must be signed in to change notification settings - Fork 376
/
devbox.json
41 lines (41 loc) · 1014 Bytes
/
devbox.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.10.7/.schema/devbox.schema.json",
"packages": {
"git": "latest",
"pre-commit": "latest",
"rustup": "latest",
"libiconv": "latest",
"darwin.apple_sdk.frameworks.SystemConfiguration": {
"platforms": ["x86_64-darwin", "aarch64-darwin"],
},
"darwin.apple_sdk.frameworks.Security": {
"platforms": ["x86_64-darwin", "aarch64-darwin"],
},
"darwin.apple_sdk.frameworks.CoreServices": {
"platforms": ["x86_64-darwin", "aarch64-darwin"],
},
"vim": "latest",
"less": "latest",
"openssh": "latest",
},
"shell": {
"init_hook": [
"pre-commit install",
"if [ ! -d $RUSTUP_HOME/toolchains/stable* ]; then rustup default stable; fi",
],
"scripts": {
"test": [
"cargo test",
],
"build": [
"cargo build",
],
"fmt": [
"cargo fmt",
],
},
},
"env": {
"LS_COLORS": "di=33",
},
}