traefik: 3.3.4 -> 3.3.6 (#400112)

authored by Pol Dellaiera and committed by GitHub 5fa3af9c 2e3831b5

+8 -5
+8 -5
pkgs/by-name/tr/traefik/package.nix
··· 1 { 2 lib, 3 fetchzip, 4 - buildGo123Module, 5 nixosTests, 6 }: 7 8 - buildGo123Module rec { 9 pname = "traefik"; 10 - version = "3.3.4"; 11 12 # Archive with static assets for webui 13 src = fetchzip { 14 url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 15 - hash = "sha256-KXFpdk1VMYzGldFp/b5Ss6aJvL9yG4kSbM4LOIBUL5A="; 16 stripRoot = false; 17 }; 18 19 - vendorHash = "sha256-wtZFViVNvNuhHvI1YR2ome1rs2DIAd3Iurmpi9Y6F2w="; 20 21 subPackages = [ "cmd/traefik" ]; 22 ··· 38 passthru.tests = { 39 inherit (nixosTests) traefik; 40 }; 41 42 meta = with lib; { 43 homepage = "https://traefik.io";
··· 1 { 2 lib, 3 fetchzip, 4 + buildGo124Module, 5 nixosTests, 6 + nix-update-script, 7 }: 8 9 + buildGo124Module rec { 10 pname = "traefik"; 11 + version = "3.3.6"; 12 13 # Archive with static assets for webui 14 src = fetchzip { 15 url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 16 + hash = "sha256-HA/JSwcss5ytGPqe2dqsKTZxuhWeC/yi8Mva4YVFeDs="; 17 stripRoot = false; 18 }; 19 20 + vendorHash = "sha256-23BkkfJ6XLAygeeKipJk4puV5sGILb8rXEEA4qJWZS4="; 21 22 subPackages = [ "cmd/traefik" ]; 23 ··· 39 passthru.tests = { 40 inherit (nixosTests) traefik; 41 }; 42 + 43 + passthru.updateScript = nix-update-script { }; 44 45 meta = with lib; { 46 homepage = "https://traefik.io";