espeakedit: add missing runHooks

This commit is contained in:
pancaek
2026-07-07 14:33:28 -07:00
parent f8734c8da9
commit 38b6207b9e
+5 -2
View File
@@ -61,12 +61,15 @@ stdenv.mkDerivation (finalAttrs: {
'';
buildPhase = ''
runHook preBuild
make -C src
runHook postBuild
'';
installPhase = ''
mkdir -p "$out/bin"
cp src/espeakedit "$out/bin"
runHook preInstall
install -D src/espeakedit -t $out/bin
runHook postInstall
'';
meta = {