7 lines
367 B
Markdown
7 lines
367 B
Markdown
# get-nix-sources
|
|
|
|
'''hash
|
|
nix-instantiate "<nixpkgs>" -A hello | xargs nix-store --query -R | grep '\.drv' | xargs nix derivation --extra-experimental-features nix-command show | jq 'to_entries[] | select( (.value.outputs | type == "object") and (.value.outputs | to_entries | all(.value | has("hash"))) and (.value.outputs | to_entries | length > 0)) | .key'
|
|
|
|
'''
|
|
|