about summary refs log tree commit diff
path: root/pkgs/servers/traefik
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-09-08 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-09-08 04:20:00 +0000
commitb4ab817ed08a7931cf36e247b3365fcc41b519fb (patch)
treeecb97c66b3f40b917b04dabe7719aabdedaabeef /pkgs/servers/traefik
parent55add811b7b0d087d02fc3caf70e8153336e93a4 (diff)
traefik: 2.5.1 -> 2.5.2
https://github.com/traefik/traefik/releases/tag/v2.5.2
Diffstat (limited to 'pkgs/servers/traefik')
-rw-r--r--pkgs/servers/traefik/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/servers/traefik/default.nix b/pkgs/servers/traefik/default.nix
index 3a70b148b1143..641554e1d6cbc 100644
--- a/pkgs/servers/traefik/default.nix
+++ b/pkgs/servers/traefik/default.nix
@@ -2,15 +2,15 @@
 
 buildGoModule rec {
   pname = "traefik";
-  version = "2.5.1";
+  version = "2.5.2";
 
   src = fetchzip {
     url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz";
-    sha256 = "sha256-vO8sBksh5gRq+s7VXshs5wZw4ygqbJzG2J3iSEGl/Ws=";
+    sha256 = "1q93l7jb0vs1d324453gk307hlhav2g0xjqkcz3f43rxhb0jbwpk";
     stripRoot = false;
   };
 
-  vendorSha256 = "sha256-tBUW6iBZZYc2OgSzFcDZ1C8YnyrXnuy3SdQiy8FPksM=";
+  vendorSha256 = "054l0b6xlbl9sh2bisnydm9dha30jrafybb06ggzbjffsqcgj7qw";
 
   doCheck = false;
 
@@ -33,6 +33,7 @@ buildGoModule rec {
   meta = with lib; {
     homepage = "https://traefik.io";
     description = "A modern reverse proxy";
+    changelog = "https://github.com/traefik/traefik/raw/v${version}/CHANGELOG.md";
     license = licenses.mit;
     maintainers = with maintainers; [ vdemeester ];
   };