-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhacker-news.json
37 lines (37 loc) · 1.04 KB
/
hacker-news.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
{
"app-id": "hacker-news",
"runtime": "org.freedesktop.Platform",
"runtime-version": "23.08",
"sdk": "org.freedesktop.Sdk",
"sdk-extensions": ["org.freedesktop.Sdk.Extension.rust-stable"],
"command": "quickstart",
"finish-args": [
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--device=dri"
],
"build-options": {
"append-path": "/usr/lib/sdk/rust-stable/bin"
},
"modules": [{
"name": "hacker-news",
"buildsystem": "simple",
"build-options": {
"env": {
"CARGO_HOME": "/run/build/hacker-news/cargo"
}
},
"build-commands": [
"cargo --offline fetch --manifest-path Cargo.toml --verbose",
"cargo --offline build --release --verbose",
"install -Dm755 ./target/release/quickstart -t /app/bin/"
],
"sources": [{
"type": "dir",
"path": "."
},
"cargo-sources.json"
]
}]
}