tangled
alpha
login
or
join now
fuwn.net
/
yae
0
fork
atom
⛩️ Powerful yet Minimal Nix Dependency Manager
flake
flakes
home-manager
nixos
go
nix
dependency
dependencies
0
fork
atom
overview
issues
pulls
pipelines
docs: add json schema for reference
fuwn.net
1 year ago
0e4ab652
25b868f9
verified
This commit was signed with the committer's
known signature
.
fuwn.net
SSH Key Fingerprint:
SHA256:VPdFPyPbd6JkoMyWUdZ/kkTcIAt3sxjXD2XSAZ7FYC4=
+22
1 changed file
expand all
collapse all
unified
split
yae.schema.json
+22
yae.schema.json
···
1
1
+
{
2
2
+
"$schema": "http://json-schema.org/draft-07/schema#",
3
3
+
"type": "object",
4
4
+
"properties": { "$schema": { "type": "string" } },
5
5
+
"additionalProperties": {
6
6
+
"type": "object",
7
7
+
"required": ["url", "sha256", "unpack", "type"],
8
8
+
"additionalProperties": false,
9
9
+
"properties": {
10
10
+
"url": { "type": "string" },
11
11
+
"sha256": { "type": "string" },
12
12
+
"unpack": { "type": "boolean" },
13
13
+
"type": { "type": "string" },
14
14
+
"version": { "type": "string" },
15
15
+
"url_template": { "type": "string" },
16
16
+
"tag_predicate": { "type": "string" },
17
17
+
"trim_tag_prefix": { "type": "string" },
18
18
+
"pinned": { "type": "boolean" },
19
19
+
"force": { "type": "boolean" }
20
20
+
}
21
21
+
}
22
22
+
}