summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/cluster/linkerd
diff options
context:
space:
mode:
authorMax Gonzih <gonzih@gmail.com>2019-07-28 01:51:18 -0400
committerWael Nasreddine <wael.nasreddine@gmail.com>2019-07-27 22:51:18 -0700
commit184beb523653d5058b584b320bdd3d5b8352189f (patch)
treebbfd7d75a12517f167fadfc916da25f58a85e3c8 /pkgs/applications/networking/cluster/linkerd
parenta7d6390804c1f18737f71be62a02799f1b23e9a6 (diff)
linkerd: init at 2019-07-26 (#65436)
Diffstat (limited to 'pkgs/applications/networking/cluster/linkerd')
-rw-r--r--pkgs/applications/networking/cluster/linkerd/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/linkerd/default.nix b/pkgs/applications/networking/cluster/linkerd/default.nix
new file mode 100644
index 000000000000..256bce9b6ec2
--- /dev/null
+++ b/pkgs/applications/networking/cluster/linkerd/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, buildGoModule }:
+
+buildGoModule rec {
+ pname = "linkerd-unstablle";
+ version = "2019-07-26";
+
+ src = fetchFromGitHub {
+ owner = "linkerd";
+ repo = "linkerd2";
+ rev = "065dd3ec9d4b84c90383b31be16ccadd34a8ab0d";
+ sha256 = "01m8g627sd126as0a74fy9svmymwd41sifd897nhn6kz78a21gq8";
+ };
+
+ modSha256 = "0gahhywpcj16ww4l8s3wjwvavq24fpy258snhyf94ipy6lb797sl";
+
+ subPackages = [ "cli/cmd" ];
+
+ meta = with stdenv.lib; {
+ description = "A service mesh for Kubernetes and beyond.";
+ homepage = https://linkerd.io/;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ Gonzih ];
+ };
+}