3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/cluster/linkerd/default.nix
2020-03-21 05:39:00 -05:00

27 lines
713 B
Nix

{ stdenv, fetchFromGitHub, buildGoModule, Security }:
buildGoModule {
pname = "linkerd-unstablle";
version = "2019-07-26";
src = fetchFromGitHub {
owner = "linkerd";
repo = "linkerd2";
rev = "065dd3ec9d4b84c90383b31be16ccadd34a8ab0d";
sha256 = "01m8g627sd126as0a74fy9svmymwd41sifd897nhn6kz78a21gq8";
};
modSha256 = "0gahhywpcj16ww4l8s3wjwvavq24fpy258snhyf94ipy6lb797sl";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
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 ];
};
}