Skip to content

Commit

Permalink
[Backport release-24.11] traefik: 3.1.4 -> 3.2.1 (#363546)
Browse files Browse the repository at this point in the history
  • Loading branch information
Scrumplex authored Dec 9, 2024
2 parents 9894771 + 6e82cbe commit 024b840
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions pkgs/by-name/tr/traefik/package.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
{ lib, fetchzip, buildGo123Module, nixosTests }:
{
lib,
fetchzip,
buildGo123Module,
nixosTests,
}:

buildGo123Module rec {
pname = "traefik";
version = "3.1.4";
version = "3.2.1";

# 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-e77PCMeN6Ck6hQ3Rx7MU4EL+f/1kpA2E+gVcISoUnf4=";
hash = "sha256-MOYSq7LjAPnyjYALzeMdunTQtQykOOP1ILvpYOgFsYA=";
stripRoot = false;
};

vendorHash = "sha256-iYwA/y9AuHomyEckOyl4845lkQkeBAFDsGiZWESylqs=";
vendorHash = "sha256-NQB8vPcnLKvZhf/n/y+L/fFhhOB1EdViCI8j1XUdHtw=";

subPackages = [ "cmd/traefik" ];

Expand All @@ -28,7 +33,9 @@ buildGo123Module rec {

doCheck = false;

passthru.tests = { inherit (nixosTests) traefik; };
passthru.tests = {
inherit (nixosTests) traefik;
};

meta = with lib; {
homepage = "https://traefik.io";
Expand Down

0 comments on commit 024b840

Please sign in to comment.