mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
78b2ed263e
svn path=/nixu/trunk/; revision=7063
10 lines
168 B
Bash
10 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
|