nix-output-monitor icon indicating copy to clipboard operation
nix-output-monitor copied to clipboard

Pipe your nix-build output through the nix-output-monitor a.k.a nom to get additional information while building.

Results 104 nix-output-monitor issues
Sort by recently updated
recently updated
newest added

I am using the version from current nixpkgs (`nixos-unstable` branch). I found `~/.cache/nix-output-monitor/build-reports.csv` contains a single line even a lot of packages have been built. The line is like: ```...

bug
regression

Assumption is that nom exits too fast to print the error the first time. ![image](https://user-images.githubusercontent.com/131599/233806044-ffc877c6-5aa9-4556-a6db-b37dae528be1.png)

bug

Currently we only determine dependencies by looking into derivations: There we have inputDerivations and inputSrcs. But there is actually another kind of dependency: storePaths can reference other store paths without...

bug
regression

* via flags * via file * via runtime keypress

enhancement
configuration

Happens when nix fails when no errors where printed.

bug
output

- [ ] Use enum-type for platforms - [ ] Replace dense intmaps with arrays. (Maybe make an opaque data type with fast reverse lookup hidden away.) - [ ]...

enhancement
internal

With this derivation: ```nix { pkgs ? (import {}) }: pkgs.stdenv.mkDerivation { name = "robot-that-screams"; buildCommand = '' for _ in {0..1000000}; do echo AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA done ''; } ``` nix-build...

bug

The memory footprint shows that a large part are the Maps in which we try to efficiently store different information. Maybe we can make this faster/smaller with a HashMap. Also...

enhancement
internal