traefik: 3.1.2 -> 3.1.4

This fixes CVE-2024-45410[0] (GHSA-62c8-mh53-4cqv[1]).

[0]: https://nvd.nist.gov/vuln/detail/CVE-2024-45410
[1]: https://github.com/traefik/traefik/security/advisories/GHSA-62c8-mh53-4cqv

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2024-09-24 09:34:15 +02:00
parent 32f0bfd993
commit 78dc108938
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951

View File

@ -1,17 +1,17 @@
{ lib, fetchzip, buildGoModule, nixosTests }:
{ lib, fetchzip, buildGo123Module, nixosTests }:
buildGoModule rec {
buildGo123Module rec {
pname = "traefik";
version = "3.1.2";
version = "3.1.4";
# 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-PHS4x9RDoc2zDPS1SaYYEeZVa4SyQpvqzPT/SDo1ygg=";
hash = "sha256-e77PCMeN6Ck6hQ3Rx7MU4EL+f/1kpA2E+gVcISoUnf4=";
stripRoot = false;
};
vendorHash = "sha256-xQPDlwu/mRdyvZW0qSCA9eko9pOQAMwh2vVJWzMnyfs=";
vendorHash = "sha256-iYwA/y9AuHomyEckOyl4845lkQkeBAFDsGiZWESylqs=";
subPackages = [ "cmd/traefik" ];