feat(nixFastBuild): remove useless message from nom
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2025-01-29 11:53:22 -05:00
parent 3dd2055045
commit 8f34e3c7e6

View file

@ -14,13 +14,19 @@ in
inherit nix; inherit nix;
}; };
nix-output-monitor = prev.nix-output-monitor.overrideAttrs (o: {
postPatch = ''
${o.postPatch}
sed -i 's/.*" nom hasnt detected any input. Have you redirected nix-build stderr into nom? (See -h and the README for details.)".*//' ./lib/NOM/Print.hs
'';
});
nix-fast-build = nix-fast-build.packages.${final.system}.nix-fast-build.override { nix-fast-build = nix-fast-build.packages.${final.system}.nix-fast-build.override {
nix-eval-jobs = inherit (final) nix-output-monitor;
nix-eval-jobs.packages.${final.system}.default.override {
inherit nix; nix-eval-jobs = nix-eval-jobs.packages.${final.system}.default.override {
} inherit nix;
// { };
inherit nix;
};
}; };
} }