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

54 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, pythonPackages, fetchgit, fetchFromGitHub, makeWrapper, git
2018-10-06 13:21:28 +00:00
, 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
};
2019-08-05 10:34:21 +00:00
nativeBuildInputs = p.nativeBuildInputs ++ [ git ];
2019-08-05 10:35:20 +00:00
2017-09-13 14:37:46 +00:00
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";
version = "0.104";
2017-09-13 14:37:46 +00:00
src = fetchFromGitHub {
owner = "datawire";
repo = "telepresence";
rev = version;
sha256 = "0fccbd54ryd9rcbhfh5lx8qcc3kx3k9jads918rwnzwllqzjf7sg";
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/";
2017-09-13 14:37:46 +00:00
description = "Local development against a remote Kubernetes or OpenShift cluster";
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ offline ];
};
}