stdenv: consistent phases header

Make phases header consistent for all phases.

`Running phase:` is from an old nix ux doc from 2020

https://github.com/tweag/nix-ux/blob/master/first_steps_with_nix_v2.md

Co-authored-by: Artturin <Artturin@artturin.com>
This commit is contained in:
Ivan Mincik 2023-11-15 10:23:03 +01:00 committed by Artturin
parent c76c0e0741
commit 3b4b805561

View File

@ -1495,17 +1495,7 @@ distPhase() {
showPhaseHeader() {
local phase="$1"
case "$phase" in
unpackPhase) echo "unpacking sources";;
patchPhase) echo "patching sources";;
configurePhase) echo "configuring";;
buildPhase) echo "building";;
checkPhase) echo "running tests";;
installPhase) echo "installing";;
fixupPhase) echo "post-installation fixup";;
installCheckPhase) echo "running install tests";;
*) echo "$phase";;
esac
echo "Running phase: $phase"
}