Unverified Commit 63618b30 authored by Sefa Eyeoglu's avatar Sefa Eyeoglu Committed by GitHub
Browse files

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

parents 85f7e662 56fd2383
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
{ 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 = {