* Quick hack to allow viewing of dependency graphs (via nix-store -q

--graph).  Maybe I should use SVG, since the generated PNGs tend to
  be huge.
This commit is contained in:
Eelco Dolstra
2009-02-27 15:31:49 +00:00
parent c8ad58a774
commit f0f5b095cc
3 changed files with 68 additions and 3 deletions

View File

@ -86,11 +86,21 @@
</tr>
<tr>
<th>Derivation store path:</th>
<td><tt>[% build.drvpath %]</tt></td>
<td>
<tt>[% build.drvpath %]</tt>
[% IF drvAvailable %]
(<a href="[% c.uri_for('/build' build.id 'buildtime-deps') %]">build-time dependencies</a>)
[% END %]
</td>
</tr>
<tr>
<th>Output store path:</th>
<td><tt>[% build.outpath %]</tt></td>
<td>
<tt>[% build.outpath %]</tt>
[% IF available %]
(<a href="[% c.uri_for('/build' build.id 'runtime-deps') %]">runtime dependencies</a>)
[% END %]
</td>
</tr>
[% IF build.finished %]
<tr>