angle: Correct pre/postInstall phase hooks

This commit is contained in:
Alexis Hildebrandt
2025-09-22 22:37:16 +02:00
parent 330a45d7e2
commit 8157f6caa4
+2 -2
View File
@@ -129,7 +129,7 @@ stdenv.mkDerivation (finalAttrs: {
'';
installPhase = ''
runHook preInstallPhase
runHook preInstall
install -v -m755 -D \
*${stdenv.hostPlatform.extensions.sharedLibrary}* \
@@ -169,7 +169,7 @@ stdenv.mkDerivation (finalAttrs: {
Cflags: -I''${includedir}
EOF
runHook postInstallPhase
runHook postInstall
'';
meta = {