diff --git a/pkgs/top-level/metrics.nix b/pkgs/top-level/metrics.nix index ba5de46f40ad..6bd2be765950 100644 --- a/pkgs/top-level/metrics.nix +++ b/pkgs/top-level/metrics.nix @@ -56,9 +56,11 @@ stdenvNoCC.mkDerivation { esac # Show the Nix statistics and the `time` statistics. - cat "$nix_stats" + echo "Nix statistics for $@" + jq . "$nix_stats" echo - cat "$time_stats" + echo "Time statistics for $@" + jq . "$time_stats" echo cpuTime="$(jq '.cpuTime' < "$nix_stats")"