about summary refs log tree commit diff
path: root/scripts/fetchdeps.sh
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-11-07 22:36:50 +0100
committerRory& <root@rory.gay>2025-11-07 22:36:50 +0100
commit2cd76f916a13e66f1fdf06dd7bf5dff6be64de0b (patch)
tree74be7cbf4cbfb7749ede5325bce1f92728ece648 /scripts/fetchdeps.sh
parentRemove deprecated unauthenticated media uris (diff)
downloadLibMatrix-2cd76f916a13e66f1fdf06dd7bf5dff6be64de0b.tar.xz
WIP: nix CI
Diffstat (limited to '')
-rwxr-xr-xscripts/fetchdeps.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/fetchdeps.sh b/scripts/fetchdeps.sh
new file mode 100755

index 0000000..a93ff53 --- /dev/null +++ b/scripts/fetchdeps.sh
@@ -0,0 +1,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