summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/linkerd
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2022-01-30 08:25:33 -0300
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-01-30 21:46:38 +1000
commit7c895e75941c9f9950e0367c342e1ffb09f7d8f0 (patch)
tree6aee086513fe866937cb4a72812a609e5d5b4edc /pkgs/applications/networking/cluster/linkerd
parentc66f3f6c5136f4e6a4288a542a3eabe9deb3cf4b (diff)
downloadnixpkgs-7c895e75941c9f9950e0367c342e1ffb09f7d8f0.tar
nixpkgs-7c895e75941c9f9950e0367c342e1ffb09f7d8f0.tar.gz
nixpkgs-7c895e75941c9f9950e0367c342e1ffb09f7d8f0.tar.bz2
nixpkgs-7c895e75941c9f9950e0367c342e1ffb09f7d8f0.tar.lz
nixpkgs-7c895e75941c9f9950e0367c342e1ffb09f7d8f0.tar.xz
nixpkgs-7c895e75941c9f9950e0367c342e1ffb09f7d8f0.tar.zst
nixpkgs-7c895e75941c9f9950e0367c342e1ffb09f7d8f0.zip
linkerd_edge: 21.10.3 -> 22.1.4
Diffstat (limited to 'pkgs/applications/networking/cluster/linkerd')
-rw-r--r--pkgs/applications/networking/cluster/linkerd/edge.nix6
-rw-r--r--pkgs/applications/networking/cluster/linkerd/generic.nix5
2 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/networking/cluster/linkerd/edge.nix b/pkgs/applications/networking/cluster/linkerd/edge.nix
index 0af651246e5..8c8a6d92930 100644
--- a/pkgs/applications/networking/cluster/linkerd/edge.nix
+++ b/pkgs/applications/networking/cluster/linkerd/edge.nix
@@ -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=";
 }
diff --git a/pkgs/applications/networking/cluster/linkerd/generic.nix b/pkgs/applications/networking/cluster/linkerd/generic.nix
index 7722a7109c2..5601bad7104 100644
--- a/pkgs/applications/networking/cluster/linkerd/generic.nix
+++ b/pkgs/applications/networking/cluster/linkerd/generic.nix
@@ -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;