-
Notifications
You must be signed in to change notification settings - Fork 2
/
devbox.json
56 lines (56 loc) · 1.68 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"packages": {
"go": "1.22.3",
"python310Packages.pip": "23.2.1",
"python": "3.10.14",
"awscli": "1.32.21",
"ffmpeg": "6.1.1",
"nixpkgs#stdenv.cc.cc.lib": "",
"gcc": {
"version": "13.2.0",
"excluded_platforms": ["x86_64-darwin", "aarch64-darwin"]
},
"gcc-unwrapped": {
"version": "13.2.0",
"excluded_platforms": ["x86_64-darwin", "aarch64-darwin"]
},
"inotify-tools": {
"version": "4.23.9.0",
"excluded_platforms": ["x86_64-darwin", "aarch64-darwin"]
},
"darwin.apple_sdk.frameworks.CoreServices": {
"platforms": ["x86_64-darwin", "aarch64-darwin"]
},
"darwin.apple_sdk.frameworks.CoreFoundation": {
"platforms": ["x86_64-darwin", "aarch64-darwin"]
},
"git": "2.44.0",
"duckdb": "1.1.1",
"hugo": "0.132.1",
"elixir": "1.17.3",
"elixir-ls": "0.21.3",
"imagemagick": "7.1.1-32",
"clang": "17.0.6",
"erlang": "25.3.2.12"
},
"shell": {
"init_hook": [
". $VENV_DIR/bin/activate",
"export LD_LIBRARY_PATH=./.devbox/nix/profile/default/lib",
"pip install -r requirements.txt",
"mix local.hex --force",
"mix local.rebar --force",
"mix deps.get",
"make fetch"
],
"scripts": {
"build": "make build",
"clear-build": "make clear-build",
"watch-run": "make watch-run",
"build-target": "make build-target",
"run-target": "make run-target",
"duckdb-export": "make duckdb-export",
"fetch": "make fetch"
}
}
}