hydraAntLogger: actually call {pre,post}Install hook (#354073)

This commit is contained in:
Sefa Eyeoglu
2024-11-07 07:50:54 +01:00
committed by GitHub
@@ -1,9 +1,10 @@
{ lib
, stdenv
, fetchFromGitHub
, ant
, jdk
, stripJavaArchivesHook
{
lib,
stdenv,
fetchFromGitHub,
ant,
jdk,
stripJavaArchivesHook,
}:
stdenv.mkDerivation {
@@ -31,9 +32,9 @@ stdenv.mkDerivation {
'';
installPhase = ''
runHook preBuild
runHook preInstall
install -Dm644 *.jar -t $out/share/java
runHook postBuild
runHook postInstall
'';
meta = {