traefik: 3.3.4 -> 3.3.6 (#400112)

This commit is contained in:
Pol Dellaiera
2025-04-19 20:24:10 +00:00
committed by GitHub
+8 -5
View File
@@ -1,22 +1,23 @@
{
lib,
fetchzip,
buildGo123Module,
buildGo124Module,
nixosTests,
nix-update-script,
}:
buildGo123Module rec {
buildGo124Module rec {
pname = "traefik";
version = "3.3.4";
version = "3.3.6";
# Archive with static assets for webui
src = fetchzip {
url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz";
hash = "sha256-KXFpdk1VMYzGldFp/b5Ss6aJvL9yG4kSbM4LOIBUL5A=";
hash = "sha256-HA/JSwcss5ytGPqe2dqsKTZxuhWeC/yi8Mva4YVFeDs=";
stripRoot = false;
};
vendorHash = "sha256-wtZFViVNvNuhHvI1YR2ome1rs2DIAd3Iurmpi9Y6F2w=";
vendorHash = "sha256-23BkkfJ6XLAygeeKipJk4puV5sGILb8rXEEA4qJWZS4=";
subPackages = [ "cmd/traefik" ];
@@ -39,6 +40,8 @@ buildGo123Module rec {
inherit (nixosTests) traefik;
};
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://traefik.io";
description = "Modern reverse proxy";