affine: Correct pre/postConfigure phase hooks

This commit is contained in:
Alexis Hildebrandt
2025-09-22 22:38:04 +02:00
parent 8157f6caa4
commit 0fcfab0fc8
+2 -2
View File
@@ -135,7 +135,7 @@ stdenv.mkDerivation (finalAttrs: {
'';
configurePhase = ''
runHook preConfigurePhase
runHook preConfigure
# cargo config
mkdir -p .cargo
@@ -155,7 +155,7 @@ stdenv.mkDerivation (finalAttrs: {
(cd $HOME/.electron-prebuilt-zip-tmp && zip --recurse-paths - .) > $ELECTRON_FORGE_ELECTRON_ZIP_DIR/electron-v$ELECTRON_VERSION_IN_LOCKFILE-${nodePlatform}-${nodeArch}.zip
export ELECTRON_SKIP_BINARY_DOWNLOAD=1
runHook postConfigurePhase
runHook postConfigure
'';
buildPhase = ''