linkerd_edge: 21.10.3 -> 22.1.4

This commit is contained in:
superherointj 2022-01-30 08:25:33 -03:00 committed by zowoq
parent c66f3f6c51
commit 7c895e7594
2 changed files with 6 additions and 5 deletions

View file

@ -2,7 +2,7 @@
(callPackage ./generic.nix { }) {
channel = "edge";
version = "21.10.3";
sha256 = "09k4c0dgn9vvgp6xb20x0vylk6bbd03srk3sra8vnpywwi591mcv";
vendorSha256 = "sha256-J/+YFXHC6UTyhln2ZDEq/EyqMEP9XcNC4GRuJjGEY3g=";
version = "22.1.4";
sha256 = "00r58k26qnxjsqjdcqz04p21c1vvw5ls485gad0pcny370wrp65n";
vendorSha256 = "sha256-5vYf9/BCSHJ0iydKhz+9yDg0rRXpLd+j8uD8kcKhByc=";
}

View file

@ -1,8 +1,9 @@
{ lib, fetchFromGitHub, buildGoModule, installShellFiles }:
{ lib, fetchFromGitHub, buildGo117Module, installShellFiles }:
{ channel, version, sha256, vendorSha256 }:
buildGoModule rec {
# Fix-Me: Unlock buildGoModule version when #154059 is merged.
buildGo117Module rec {
pname = "linkerd-${channel}";
inherit version vendorSha256;