From 73e78ab226f21e6c6c68961af88c4ab9c746f4f4 Mon Sep 17 00:00:00 2001 From: tom barrett Date: Sat, 2 Sep 2023 13:15:36 +0200 Subject: caddy-cgi --- caddy-cgi.nix | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 caddy-cgi.nix (limited to 'caddy-cgi.nix') diff --git a/caddy-cgi.nix b/caddy-cgi.nix new file mode 100644 index 0000000..e8805e2 --- /dev/null +++ b/caddy-cgi.nix @@ -0,0 +1,65 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + nixosTests, + caddy, + testers, + installShellFiles, +}: let + version = "2.6.4"; + dist = fetchFromGitHub { + owner = "caddyserver"; + repo = "dist"; + rev = "v${version}"; + hash = "sha256-SJO1q4g9uyyky9ZYSiqXJgNIvyxT5RjrpYd20YDx8ec="; + }; +in + buildGoModule { + pname = "caddy"; + inherit version; + + src = ./.; + + vendorHash = "sha256-SJI0GImRqpe7ksFc3XuhHQvVyuB6JqbQDAClUtaEoTI="; + + subPackages = ["cmd/caddy"]; + + ldflags = [ + "-s" + "-w" + "-X github.com/caddyserver/caddy/v2.CustomVersion=${version}" + ]; + + nativeBuildInputs = [installShellFiles]; + + 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 "/usr/bin/caddy" "$out/bin/caddy" + substituteInPlace $out/lib/systemd/system/caddy-api.service --replace "/usr/bin/caddy" "$out/bin/caddy" + + $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; + }; + }; + + meta = with lib; { + homepage = "https://caddyserver.com"; + description = "Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS"; + license = licenses.asl20; + maintainers = with maintainers; [Br1ght0ne emilylange techknowlogick]; + }; + } -- cgit v1.2.3