mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
, fuse
|
|
}:
|
|
|
|
let
|
|
fuseftp = buildGoModule rec {
|
|
pname = "go-fuseftp";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "datawire";
|
|
repo = "go-fuseftp";
|
|
rev = "v${version}";
|
|
hash = "sha256-bkaC+EOqFPQA4fDkVhO6EqgGhOJy31yGwVbbPoRd+70=";
|
|
};
|
|
|
|
vendorHash = "sha256-Dk4wvg2lTGTw8vP42+XuvmMXeMluR0SPwlVHLEB8yCQ=";
|
|
|
|
buildInputs = [ fuse ];
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
subPackages = [ "pkg/main" ];
|
|
};
|
|
in
|
|
buildGoModule rec {
|
|
pname = "telepresence2";
|
|
version = "2.18.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "telepresenceio";
|
|
repo = "telepresence";
|
|
rev = "v${version}";
|
|
hash = "sha256-zk6HyZfYeJecJgdMU3qnXIKDYuvnu5yjSZtVvKem4uI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
fuseftp
|
|
];
|
|
|
|
# telepresence depends on fuseftp existing as a built binary, as it gets embedded
|
|
# CGO gets disabled to match their build process as that is how it's done upstream
|
|
preBuild = ''
|
|
cp ${fuseftp}/bin/main ./pkg/client/remotefs/fuseftp.bits
|
|
export CGO_ENABLED=0
|
|
'';
|
|
|
|
vendorHash = "sha256-wvzrnwzkV4SXsiZfIrowMF0G7qFdjEVrF77vM81rxLs=";
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-X=github.com/telepresenceio/telepresence/v2/pkg/version.Version=${src.rev}"
|
|
];
|
|
|
|
subPackages = [ "cmd/telepresence" ];
|
|
|
|
meta = with lib; {
|
|
description = "Local development against a remote Kubernetes or OpenShift cluster";
|
|
homepage = "https://telepresence.io";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ mausch vilsol ];
|
|
mainProgram = "telepresence";
|
|
};
|
|
}
|