aboutsummaryrefslogtreecommitdiff
path: root/src/libutil
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-08-14 20:14:55 +0200
committerEelco Dolstra <edolstra@gmail.com>2017-08-16 20:56:02 +0200
commitc36467ad2e2e27d04e681144e0e10417c53c10c1 (patch)
treebd4da6a3778873c5dfb976260a87e9c0a558cff0 /src/libutil
parentb29b6feaba715432490e275a025b3361a021a99b (diff)
Improve substitution progress indicator
E.g. $ nix build --store local?root=/tmp/nix nixpkgs.firefox-unwrapped [0/1 built, 1/97/98 fetched, 65.8/92.8 MiB DL, 203.2/309.2 MiB copied] downloading 'https://cache.nixos.org/nar/1czm9fk0svacy4h6a3fzkpafi4f7a9gml36kk8cq1igaghbspg3k.nar.xz'
Diffstat (limited to 'src/libutil')
-rw-r--r--src/libutil/logging.hh6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh
index 6a4a36171..7633408ea 100644
--- a/src/libutil/logging.hh
+++ b/src/libutil/logging.hh
@@ -16,6 +16,8 @@ typedef enum {
typedef enum {
actUnknown = 0,
actCopyPath = 100,
+ actDownload = 101,
+ actRealise = 102,
} ActivityType;
class Activity
@@ -38,10 +40,6 @@ typedef enum {
evBuildStarted = 1,
evBuildOutput = 2,
evBuildFinished = 3,
- evDownloadCreated = 4,
- evDownloadDestroyed = 5,
- evDownloadProgress = 6,
- evDownloadSucceeded = 7,
evSubstitutionCreated = 8,
evSubstitutionStarted = 9,
evSubstitutionFinished = 10,