From 8d4f99eecae190c7d4611d1341ad553829f78966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristoffer=20S=C3=B8holm?= Date: Wed, 10 Jun 2026 22:24:38 +0200 Subject: [PATCH] beamPackages.buildMix: fix install hooks not running --- .../beam-modules/hooks/beam-module-install-hook.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/beam-modules/hooks/beam-module-install-hook.sh b/pkgs/development/beam-modules/hooks/beam-module-install-hook.sh index ba66032751bc..273a8e622642 100644 --- a/pkgs/development/beam-modules/hooks/beam-module-install-hook.sh +++ b/pkgs/development/beam-modules/hooks/beam-module-install-hook.sh @@ -7,6 +7,8 @@ beamModuleInstallHook() { echo "Executing beamModuleInstallHook" + runHook preInstall + mkdir -p "$out/lib/erlang/lib/${beamModuleName}-${version}" # default to rebar3 @@ -25,6 +27,8 @@ beamModuleInstallHook() { fi done + runHook postInstall + echo "Finished beamModuleInstallHook" }