caddy: 2.7.6 -> 2.8.4

Starting with v2.8.0, Caddy recommends building with the `nobadger`
build tag.

The build tag makes go skip the compilation of the badger-db
implementation from smallstep/nosql, as it isn't used by Caddy and thus
slightly shrinks the resulting binary size.

https://github.com/caddyserver/caddy/releases/tag/v2.8.4

https://github.com/caddyserver/caddy/releases/tag/v2.8.3

https://github.com/caddyserver/caddy/releases/tag/v2.8.2

https://github.com/caddyserver/caddy/releases/tag/v2.8.1

https://github.com/caddyserver/caddy/releases/tag/v2.8.0

diff: https://github.com/caddyserver/caddy/compare/v2.7.6...v2.8.4
This commit is contained in:
Nano Twerpus 2024-05-31 03:41:03 -04:00
parent 5f6ccfaad5
commit ba913eda2d

View File

@ -8,12 +8,12 @@
, stdenv
}:
let
version = "2.7.6";
version = "2.8.4";
dist = fetchFromGitHub {
owner = "caddyserver";
repo = "dist";
rev = "v${version}";
hash = "sha256-aZ7hdAZJH1PvrX9GQLzLquzzZG3LZSKOvt7sWQhTiR8=";
hash = "sha256-O4s7PhSUTXoNEIi+zYASx8AgClMC5rs7se863G6w+l0=";
};
in
buildGoModule {
@ -24,10 +24,10 @@ buildGoModule {
owner = "caddyserver";
repo = "caddy";
rev = "v${version}";
hash = "sha256-th0R3Q1nGT0q5PGOygtD1/CpJmrT5TYagrwQR4t/Fvg=";
hash = "sha256-CBfyqtWp3gYsYwaIxbfXO3AYaBiM7LutLC7uZgYXfkQ=";
};
vendorHash = "sha256-ebnSehuhbCY58ctM8IRVMfNxxbJBp6ht9cbuLdGFNek=";
vendorHash = "sha256-1Api8bBZJ1/oYk4ZGIiwWCSraLzK9L+hsKXkFtk6iVM=";
subPackages = [ "cmd/caddy" ];
@ -36,6 +36,9 @@ buildGoModule {
"-X github.com/caddyserver/caddy/v2.CustomVersion=${version}"
];
# matches upstream since v2.8.0
tags = [ "nobadger" ];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''