forked from lix-project/lix
Ensure nix flake show produces valid json
This commit is contained in:
parent
a82de5b31b
commit
dc25856d74
|
@ -35,4 +35,7 @@ specified by flake reference *flake-url*. These are the top-level
|
|||
attributes in the `outputs` of the flake, as well as lower-level
|
||||
attributes for some standard outputs (e.g. `packages` or `checks`).
|
||||
|
||||
With `--json`, the output is in a JSON representation suitable for automatic
|
||||
processing by other tools.
|
||||
|
||||
)""
|
||||
|
|
|
@ -386,12 +386,14 @@ git -C $templatesDir commit -m 'Initial'
|
|||
|
||||
nix flake check templates
|
||||
nix flake show templates
|
||||
nix flake show templates --json | jq
|
||||
|
||||
(cd $flake7Dir && nix flake init)
|
||||
(cd $flake7Dir && nix flake init) # check idempotence
|
||||
git -C $flake7Dir add flake.nix
|
||||
nix flake check $flake7Dir
|
||||
nix flake show $flake7Dir
|
||||
nix flake show $flake7Dir --json | jq
|
||||
git -C $flake7Dir commit -a -m 'Initial'
|
||||
|
||||
# Test 'nix flake new'.
|
||||
|
|
Loading…
Reference in a new issue