orca-c: explicitly call preInstall & postInstall hooks during installPhase

This commit is contained in:
netcrns 2021-05-20 19:49:37 +02:00 committed by Jonathan Ringer
parent 3d8c13ccd4
commit bd9341ff39

View file

@ -17,8 +17,12 @@ stdenv.mkDerivation {
''; '';
installPhase = '' installPhase = ''
runHook preInstall
mkdir -p $out/bin mkdir -p $out/bin
install build/orca $out/bin/orca install build/orca $out/bin/orca
runHook postInstall
''; '';
meta = with lib; { meta = with lib; {