Run install hooks in Nix package

This commit is contained in:
Reinout Meliesie 2026-04-29 16:55:30 +02:00
commit 180f04c415
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6

View file

@ -10,6 +10,10 @@ mkDerivation {
phases = [ "installPhase" ];
installPhase = ''
runHook preInstall
cp -r /build/source/* $out/
runHook postInstall
'';
}