⛩️ Powerful yet Minimal Nix Dependency Manager
flake
flakes
home-manager
nixos
go
nix
dependency
dependencies
1{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "type": "object",
4 "properties": { "$schema": { "type": "string" } },
5 "additionalProperties": {
6 "type": "object",
7 "required": ["url", "sha256", "hash", "unpack", "type"],
8 "additionalProperties": false,
9 "properties": {
10 "url": { "type": "string" },
11 "sha256": { "type": "string" },
12 "hash": { "type": "string" },
13 "unpack": { "type": "boolean" },
14 "type": { "type": "string" },
15 "version": { "type": "string" },
16 "url_template": { "type": "string" },
17 "tag_predicate": { "type": "string" },
18 "trim_tag_prefix": { "type": "string" },
19 "pinned": { "type": "boolean" },
20 "force": { "type": "boolean" }
21 }
22 }
23}