mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
11 lines
168 B
Bash
11 lines
168 B
Bash
|
graph="$1"
|
||
|
|
||
|
while read storePath; do
|
||
|
echo $storePath
|
||
|
read deriver
|
||
|
read count
|
||
|
for ((i = 0; i < $count; i++)); do
|
||
|
read ref
|
||
|
done
|
||
|
done < $graph
|