about summary refs log tree commit diff
path: root/src/libstore/misc.hh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2008-08-04T12·29+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2008-08-04T12·29+0000
commitc4f98941ed7e5e07786d92fc0be4435878f9b3cd (patch)
tree55d95e84f9ac65711144dd9456f71b0acc516ef8 /src/libstore/misc.hh
parent03427e76f11fe1d918020d28bdb69b2fb348ee96 (diff)
* nix-env --dry-run: show the total size of the substituter
  downloads.

Diffstat (limited to 'src/libstore/misc.hh')
-rw-r--r--src/libstore/misc.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/misc.hh b/src/libstore/misc.hh
index 33d81ed4a0..f3aa34076c 100644
--- a/src/libstore/misc.hh
+++ b/src/libstore/misc.hh
@@ -29,7 +29,8 @@ Path findOutput(const Derivation & drv, string id);
    derivations that will be built, and the set of output paths that
    will be substituted. */
 void queryMissing(const PathSet & targets,
-    PathSet & willBuild, PathSet & willSubstitute, PathSet & unknown);
+    PathSet & willBuild, PathSet & willSubstitute, PathSet & unknown,
+    unsigned long long & downloadSize);
 
 
 }