traefik: 2.7.1 -> 2.7.2
This commit is contained in:
parent
8f083f2dd4
commit
64f5057853
1 changed files with 8 additions and 8 deletions
|
@ -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" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue