2021-11-04 20:43:27 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, kubernetes-helm }:
|
2021-04-10 17:54:43 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "telepresence2";
|
2022-04-09 22:14:33 +01:00
|
|
|
version = "2.5.4";
|
2021-04-10 17:54:43 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "telepresenceio";
|
|
|
|
repo = "telepresence";
|
|
|
|
rev = "v${version}";
|
2022-04-09 22:14:33 +01:00
|
|
|
sha256 = "sha256-v6E1v89cVL4N8eKJ5pKU6BwQWZF5lLs4VLGhUS5J1rA=";
|
2021-04-10 17:54:43 +01:00
|
|
|
};
|
|
|
|
|
2021-11-04 20:43:27 +00:00
|
|
|
# The Helm chart is go:embed'ed as a tarball in the binary.
|
|
|
|
# That tarball is generated by running ./build-aux/package_embedded_chart/main.go,
|
|
|
|
# which tries to invoke helm from tools/bin/helm.
|
|
|
|
# Oh well…
|
|
|
|
preBuild = ''
|
|
|
|
mkdir -p tools/bin
|
|
|
|
ln -sfn ${kubernetes-helm}/bin/helm tools/bin/helm
|
|
|
|
go run ./build-aux/package_embedded_chart/main.go ${src.rev}
|
|
|
|
'';
|
|
|
|
|
2022-04-09 22:14:33 +01:00
|
|
|
vendorSha256 = "sha256-RDXP7faijMujAV19l9NmI4xk0Js6DE5YZoHRo2GHyoU=";
|
2021-04-10 17:54:43 +01:00
|
|
|
|
2021-08-26 07:45:51 +01:00
|
|
|
ldflags = [
|
|
|
|
"-s" "-w" "-X=github.com/telepresenceio/telepresence/v2/pkg/version.Version=${src.rev}"
|
|
|
|
];
|
2021-04-10 17:54:43 +01:00
|
|
|
|
|
|
|
subPackages = [ "cmd/telepresence" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Local development against a remote Kubernetes or OpenShift cluster";
|
|
|
|
homepage = "https://www.getambassador.io/docs/telepresence/2.1/quick-start/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ mausch ];
|
2022-04-01 20:34:55 +01:00
|
|
|
mainProgram = "telepresence";
|
2021-04-10 17:54:43 +01:00
|
|
|
};
|
|
|
|
}
|