diff options
author | Maximilian Bosch <maximilian@mbosch.me> | 2018-07-03T10·49+0200 |
---|---|---|
committer | Maximilian Bosch <maximilian@mbosch.me> | 2018-07-03T10·49+0200 |
commit | 8a98ffc276989700f55847e212837d93d6898add (patch) | |
tree | 7fc31bd837cec4cc077a5989eaf6e530d56ca88e /src | |
parent | dd98683e65f4f05bd0979df02b477bf96599ba04 (diff) |
nix why-depends: render output into $PAGER
Diffstat (limited to 'src')
-rw-r--r-- | src/nix/why-depends.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nix/why-depends.cc b/src/nix/why-depends.cc index 17e0595ae887..325a2be0a793 100644 --- a/src/nix/why-depends.cc +++ b/src/nix/why-depends.cc @@ -2,6 +2,7 @@ #include "store-api.hh" #include "progress-bar.hh" #include "fs-accessor.hh" +#include "shared.hh" #include <queue> @@ -237,6 +238,7 @@ struct CmdWhyDepends : SourceExprCommand visitPath(node.path); + RunPager pager; for (auto & ref : refs) { auto hash = storePathToHash(ref.second->path); |