hydraAntLogger: actually call {pre,post}Install hook

This commit is contained in:
TomaSajt
2024-11-06 20:49:19 +01:00
parent 5b13e7dfe6
commit 56fd238386
@@ -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 = {