mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
77 lines
2.3 KiB
Nix
77 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
makeWrapper,
|
|
# official jre size is 500MB, but temurin-jre-bin is 100MB.
|
|
temurin-jre-bin,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "halo";
|
|
version = "2.20.10";
|
|
src = fetchurl {
|
|
url = "https://github.com/halo-dev/halo/releases/download/v${version}/halo-${version}.jar";
|
|
hash = "sha256-xvUZUT0CpGDKbeS6xx1qARabx0XtB67E8dc8UsnUbK4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
temurin-jre-bin
|
|
];
|
|
|
|
dontBuild = true;
|
|
dontConfigure = true;
|
|
|
|
unpackPhase = ''
|
|
cp $src halo.jar
|
|
# Extract the jar file.
|
|
# Because jar vs extract, jar startup time is 4s slower than extract.
|
|
java -Djarmode=tools -jar halo.jar extract --layers --launcher
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/halo
|
|
find halo -type d -empty -delete
|
|
for target in halo/*; do
|
|
cp -r $target/* $out/share/halo
|
|
done
|
|
|
|
# 'HALO_WORK_DIR'
|
|
# Set the working directory for halo, then plug-ins and other content will be stored in this directory.
|
|
# Note: that the '/' symbol is not required at the end of the path.
|
|
# default: /var/lib/halo
|
|
# 'JVM_OPTS'
|
|
# Note: 'apache.lucene' requires us to set HotspotVMOptions.
|
|
# You can override this via environment variables.
|
|
# default: -Xms256m -Xmx256m
|
|
# 'SPRING_CONFIG_LOCATION'
|
|
# Note: 'spring.config.location' is used to specify the configuration file location.
|
|
# Warning: This variable is based on "HALO_WORK_DIR", you do not need and should not set or override it.
|
|
mkdir -p $out/bin
|
|
makeWrapper ${temurin-jre-bin}/bin/java $out/bin/halo \
|
|
--chdir $out/share/halo \
|
|
--set-default HALO_WORK_DIR "/var/lib/halo" \
|
|
--set-default JVM_OPTS "-Xms256m -Xmx256m" \
|
|
--set SPRING_CONFIG_LOCATION "optional:classpath:/;optional:file:\`\$HALO_WORK_DIR\`/" \
|
|
--add-flags "-server \$JVM_OPTS" \
|
|
--add-flags "org.springframework.boot.loader.launch.JarLauncher"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://www.halo.run";
|
|
description = "Self-hosted dynamic blogging program";
|
|
maintainers = with lib.maintainers; [ yah ];
|
|
license = lib.licenses.gpl3Only;
|
|
platforms = [
|
|
"aarch64-linux"
|
|
"x86_64-linux"
|
|
];
|
|
mainProgram = "halo";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
|
};
|
|
}
|