Merge pull request #179563 from aaronjheng/traefik

traefik: 2.7.1 -> 2.7.2
This commit is contained in:
Mario Rodas 2022-06-29 11:35:37 -05:00 committed by GitHub
commit 90cac097cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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