consul: 1.10.3 -> 1.11.1

This commit is contained in:
techknowlogick 2022-01-04 16:35:32 -05:00
parent eaff5241bf
commit 6299ff2be1

View file

@ -2,7 +2,7 @@
buildGoModule rec {
pname = "consul";
version = "1.10.3";
version = "1.11.1";
rev = "v${version}";
# Note: Currently only release tags are supported, because they have the Consul UI
@ -17,7 +17,7 @@ buildGoModule rec {
owner = "hashicorp";
repo = pname;
inherit rev;
sha256 = "sha256-Jn8cF+8Wf4zZ/PFXvjCGpomSa/DvraBGW0LsZQ+Zy+4=";
sha256 = "0x374capaz6h8mzvq2pfz4zg3gz27fjbqax65f23zqyl46haj01p";
};
passthru.tests.consul = nixosTests.consul;
@ -26,12 +26,10 @@ buildGoModule rec {
# has a split module structure in one repo
subPackages = ["." "connect/certgen"];
vendorSha256 = "sha256-cQP1po9LGunFVocl4+HPs67oae2KpgyfRRB+xGVySUY=";
vendorSha256 = "09rz2xv407ym71dap7f6bbqhdnqvylvbd9zg6f6h7qsb88nvyzsp";
doCheck = false;
deleteVendor = true;
ldflags = [
"-X github.com/hashicorp/consul/version.GitDescribe=v${version}"
"-X github.com/hashicorp/consul/version.Version=${version}"
@ -43,6 +41,6 @@ buildGoModule rec {
homepage = "https://www.consul.io/";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.mpl20;
maintainers = with maintainers; [ pradeepchhetri vdemeester nh2 ];
maintainers = with maintainers; [ pradeepchhetri vdemeester nh2 techknowlogick];
};
}