feat(nixFastBuild): remove useless message from nom
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
3dd2055045
commit
8f34e3c7e6
1 changed files with 13 additions and 7 deletions
|
@ -14,12 +14,18 @@ in
|
||||||
inherit nix;
|
inherit nix;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nix-output-monitor = prev.nix-output-monitor.overrideAttrs (o: {
|
||||||
|
postPatch = ''
|
||||||
|
${o.postPatch}
|
||||||
|
|
||||||
|
sed -i 's/.*" nom hasn‘t 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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue