diff --git a/pkgs/by-name/ll/lldap/package.nix b/pkgs/by-name/ll/lldap/package.nix index e14a5d130be4..2c606a7bd26d 100644 --- a/pkgs/by-name/ll/lldap/package.nix +++ b/pkgs/by-name/ll/lldap/package.nix @@ -76,15 +76,23 @@ let ]; buildPhase = '' + runHook preBuild + HOME=`pwd` ./app/build.sh + + runHook postBuild ''; installPhase = '' + runHook preInstall + mkdir -p $out cp -R app/{pkg,static} $out/ cp app/index_local.html $out/index.html cp -R ${staticAssets finalAttrs.src}/* $out/static rm $out/static/libraries.txt $out/static/fonts/fonts.txt + + runHook postInstall ''; doCheck = false;