* Compatibility hack so that Nixpkgs can continue to do hash checking

in `fetchurl' in Nix <= 0.7, but doesn't in Nix 0.8.
This commit is contained in:
Eelco Dolstra 2005-02-22 15:23:24 +00:00
parent 3c1630131e
commit eda2c3c253
2 changed files with 10 additions and 1 deletions

View file

@ -209,7 +209,7 @@ static void printDrvTree(const Path & drvPath,
i != drv.inputDrvs.end(); ++i)
inputs.insert(i->first);
/* Topologically sorted under the relation A < B iff A \in
/* Topologically sort under the relation A < B iff A \in
closure(B). That is, if derivation A is an (possibly indirect)
input of B, then A is printed first. This has the effect of
flattening the tree, preventing deeply nested structures. */