about summary refs log tree commit diff
path: root/scripts/fetchdeps.sh
blob: a93ff53016ff128983521b6ebbac2ee7dfc4ad74 (plain) (blame)
1
2
3
4
5
#! /usr/bin/env sh
for p in `nix flake show --json | jq '.packages."x86_64-linux" | keys[]' -r`
do
    nix build .\#${p}.passthru.fetch-deps && ./result ./${p//-/\.}/deps.json
done