Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
100 lines
2.4 KiB
Nix
100 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
buildGo125Module,
|
|
callPackage,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
caddy,
|
|
testers,
|
|
installShellFiles,
|
|
stdenv,
|
|
writableTmpDirAsHomeHook,
|
|
}:
|
|
let
|
|
version = "2.10.2";
|
|
dist = fetchFromGitHub {
|
|
owner = "caddyserver";
|
|
repo = "dist";
|
|
tag = "v${version}";
|
|
hash = "sha256-D1qI7TDJpSvtgpo1FsPZk6mpqRvRharFZ8soI7Mn3RE=";
|
|
};
|
|
in
|
|
buildGo125Module {
|
|
pname = "caddy";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "caddyserver";
|
|
repo = "caddy";
|
|
tag = "v${version}";
|
|
hash = "sha256-KvikafRYPFZ0xCXqDdji1rxlkThEDEOHycK8GP5e8vk=";
|
|
};
|
|
|
|
vendorHash = "sha256-wjcmWKVmLBAybILUi8tKEDnFbhtybf042ODH7jEq6r8=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/caddyserver/caddy/v2.CustomVersion=${version}"
|
|
];
|
|
|
|
# matches upstream since v2.8.0
|
|
tags = [
|
|
"nobadger"
|
|
"nomysql"
|
|
"nopgx"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
nativeCheckInputs = [ writableTmpDirAsHomeHook ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
postInstall = ''
|
|
install -Dm644 ${dist}/init/caddy.service ${dist}/init/caddy-api.service -t $out/lib/systemd/system
|
|
|
|
substituteInPlace $out/lib/systemd/system/caddy.service \
|
|
--replace-fail "/usr/bin/caddy" "$out/bin/caddy"
|
|
substituteInPlace $out/lib/systemd/system/caddy-api.service \
|
|
--replace-fail "/usr/bin/caddy" "$out/bin/caddy"
|
|
''
|
|
+ lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
# Generating man pages and completions fail on cross-compilation
|
|
# https://github.com/NixOS/nixpkgs/issues/308283
|
|
|
|
$out/bin/caddy manpage --directory manpages
|
|
installManPage manpages/*
|
|
|
|
installShellCompletion --cmd caddy \
|
|
--bash <($out/bin/caddy completion bash) \
|
|
--fish <($out/bin/caddy completion fish) \
|
|
--zsh <($out/bin/caddy completion zsh)
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
inherit (nixosTests) caddy;
|
|
version = testers.testVersion {
|
|
command = "${caddy}/bin/caddy version";
|
|
package = caddy;
|
|
};
|
|
acme-integration = nixosTests.acme.caddy;
|
|
};
|
|
withPlugins = callPackage ./plugins.nix { inherit caddy; };
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://caddyserver.com";
|
|
description = "Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "caddy";
|
|
maintainers = with lib.maintainers; [
|
|
Br1ght0ne
|
|
stepbrobd
|
|
techknowlogick
|
|
ryan4yin
|
|
];
|
|
};
|
|
}
|