-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdevbox.json
34 lines (34 loc) · 1.01 KB
/
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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.11.0/.schema/devbox.schema.json",
"packages": [
"nodejs@latest",
"rustup@latest",
"libiconv@latest",
"darwin.apple_sdk.frameworks.Security",
"darwin.apple_sdk.frameworks.CoreServices",
"darwin.apple_sdk.frameworks.CoreFoundation",
"darwin.apple_sdk.frameworks.Foundation",
"darwin.apple_sdk.frameworks.AppKit",
"darwin.apple_sdk.frameworks.WebKit",
"darwin.apple_sdk.frameworks.Cocoa",
"gtk3@latest",
"act@latest"
],
"env": {
"DEVBOX_COREPACK_ENABLED": "true"
},
"shell": {
"init_hook": [
"rustupHomeDir=\"$(dirname $(readlink -f \"$0\"))\"/.rustup",
"mkdir -p $rustupHomeDir",
"export RUSTUP_HOME=$rustupHomeDir",
"export LIBRARY_PATH=$LIBRARY_PATH:\"${PROJECT_DIR}/.devbox/nix/profile/default/lib\"",
"rustup default stable"
],
"scripts": {
"test": "cargo test -- --show-output",
"start": "cargo run",
"build-docs": "cargo doc"
}
}
}