From 5120d4939d6bda0caaaa768f782f69eb44fa1182 Mon Sep 17 00:00:00 2001 From: Adam Stephens Date: Tue, 13 Feb 2024 21:11:31 -0500 Subject: [PATCH] consul: 1.17.2 -> 1.17.3 Diff: https://github.com/hashicorp/consul/compare/refs/tags/v1.17.2...v1.17.3 Changelog: https://github.com/hashicorp/consul/releases/tag/v1.17.3 --- pkgs/servers/consul/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/consul/default.nix b/pkgs/servers/consul/default.nix index bfc57cc1f10e..3da8b8352b68 100644 --- a/pkgs/servers/consul/default.nix +++ b/pkgs/servers/consul/default.nix @@ -2,8 +2,7 @@ buildGoModule rec { pname = "consul"; - version = "1.17.2"; - rev = "v${version}"; + version = "1.17.3"; # Note: Currently only release tags are supported, because they have the Consul UI # vendored. See @@ -16,8 +15,8 @@ buildGoModule rec { src = fetchFromGitHub { owner = "hashicorp"; repo = pname; - inherit rev; - hash = "sha256-zfJZUDR6GJlJbnLIXa5duq8VOG0WUN+FP5BLQ4EgPKM="; + rev = "refs/tags/v${version}"; + hash = "sha256-uJN28p2fPQBBkqnlUWrlBwTNfmHr3Pn/4JiMbOBBppI="; }; passthru.tests.consul = nixosTests.consul; @@ -26,7 +25,7 @@ buildGoModule rec { # has a split module structure in one repo subPackages = ["." "connect/certgen"]; - vendorHash = "sha256-bKiKfLq/kbZYziUyD2v1o9X2Gs6uiqzPSYWE4cpeU9Q="; + vendorHash = "sha256-ToSCLAX+rNcUTnBBVWkWhLX+wjy7Y4vGLKuny1Ye3kY="; doCheck = false; @@ -38,6 +37,7 @@ buildGoModule rec { meta = with lib; { description = "Tool for service discovery, monitoring and configuration"; + changelog = "https://github.com/hashicorp/consul/releases/tag/v${version}"; homepage = "https://www.consul.io/"; platforms = platforms.linux ++ platforms.darwin; license = licenses.bsl11;