traefik: 2.7.1 -> 2.7.2

This commit is contained in:
Aaron Jheng 2022-06-29 12:02:25 +00:00
parent 8f083f2dd4
commit 64f5057853
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3

View File

@ -1,17 +1,17 @@
{ lib, fetchFromGitHub, buildGoModule, nixosTests }:
{ lib, fetchzip, buildGoModule, nixosTests }:
buildGoModule rec {
pname = "traefik";
version = "2.7.1";
version = "2.7.2";
src = fetchFromGitHub {
owner = "traefik";
repo = "traefik";
rev = "v${version}";
sha256 = "sha256-uTE0Z7lgxKNq1wQSMUSp9dMfxV+aIm7cwYSkZBUdnug=";
# Archive with static assets for webui
src = fetchzip {
url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz";
sha256 = "sha256-AJbvK3hr+cNYcoN+3Zz5WruTvWfh1junEnhRzvXVN+U=";
stripRoot = false;
};
vendorSha256 = "sha256-WlLntYrXs1kOu26yNeZI1xpb6FsHPiA/bNzaxCZTG4Y=";
vendorSha256 = "sha256-T36d8mjbThlH1mukcHgaYlhq/P46ShTHgM9zcH4L7dc=";
subPackages = [ "cmd/traefik" ];