nixpkgs/pkgs/tools/networking/telepresence/default.nix

54 lines
1.5 KiB
Nix
Raw Normal View History

2018-10-06 13:21:28 +00:00
{ lib, stdenv, pythonPackages, fetchgit, fetchFromGitHub, makeWrapper, git
, sshfs-fuse, torsocks, sshuttle, conntrack-tools , openssh, coreutils
, iptables, bash }:
2017-09-13 14:37:46 +00:00
let
sshuttle-telepresence = lib.overrideDerivation sshuttle (p: {
src = fetchgit {
url = "https://github.com/datawire/sshuttle.git";
2018-07-06 17:23:43 +00:00
rev = "32226ff14d98d58ccad2a699e10cdfa5d86d6269";
sha256 = "1q20lnljndwcpgqv2qrf1k0lbvxppxf98a4g5r9zd566znhcdhx3";
2017-09-13 14:37:46 +00:00
leaveDotGit = true;
};
buildInputs = p.buildInputs ++ [ git ];
postPatch = "rm sshuttle/tests/client/test_methods_nat.py";
postInstall = "mv $out/bin/sshuttle $out/bin/sshuttle-telepresence";
});
2018-10-06 13:21:28 +00:00
in pythonPackages.buildPythonPackage rec {
2017-09-13 14:37:46 +00:00
pname = "telepresence";
2018-10-06 13:21:28 +00:00
version = "0.93";
2017-09-13 14:37:46 +00:00
src = fetchFromGitHub {
owner = "datawire";
repo = "telepresence";
rev = version;
2018-10-06 13:21:28 +00:00
sha256 = "1x8yjcqj8v35a5pxy2rxaixbznb4vk8ll958b4l46gnkfxf1kh1d";
2017-09-13 14:37:46 +00:00
};
2018-10-06 13:21:28 +00:00
buildInputs = [ makeWrapper ];
2018-07-06 17:23:43 +00:00
2018-10-06 13:21:28 +00:00
postInstall = ''
2018-07-06 17:23:43 +00:00
wrapProgram $out/bin/telepresence \
--prefix PATH : ${lib.makeBinPath [
sshfs-fuse
torsocks
conntrack-tools
sshuttle-telepresence
openssh
coreutils
iptables
bash
]}
2017-09-13 14:37:46 +00:00
'';
2018-10-06 13:21:28 +00:00
doCheck = false;
2017-09-13 14:37:46 +00:00
meta = {
homepage = https://www.telepresence.io/;
description = "Local development against a remote Kubernetes or OpenShift cluster";
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ offline ];
};
}