2019-03-05 16:37:33 -08:00
|
|
|
{ stdenv, python3Packages, fetchurl, makeWrapper
|
2019-06-16 12:59:06 -07:00
|
|
|
, coreutils, iptables, nettools, openssh, procps }:
|
2017-09-25 23:16:14 -07:00
|
|
|
|
2017-07-09 00:59:08 -07:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-03-29 03:34:50 -07:00
|
|
|
pname = "sshuttle";
|
2019-03-05 16:37:33 -08:00
|
|
|
version = "0.78.5";
|
2013-10-05 07:45:51 -07:00
|
|
|
|
2020-03-29 03:34:50 -07:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2019-03-05 16:37:33 -08:00
|
|
|
sha256 = "0vp13xwrhx4m6zgsyzvai84lkq9mzkaw47j58dk0ll95kaymk2x8";
|
2013-10-05 07:45:51 -07:00
|
|
|
};
|
|
|
|
|
2018-08-30 02:11:33 -07:00
|
|
|
patches = [ ./sudo.patch ];
|
2015-09-23 16:32:25 -07:00
|
|
|
|
2019-03-05 16:37:33 -08:00
|
|
|
nativeBuildInputs = [ makeWrapper python3Packages.setuptools_scm ];
|
2015-09-24 00:44:10 -07:00
|
|
|
buildInputs =
|
2018-03-25 21:01:31 -07:00
|
|
|
[ coreutils openssh procps nettools ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ iptables ];
|
2013-10-05 07:45:51 -07:00
|
|
|
|
2019-03-05 16:37:33 -08:00
|
|
|
checkInputs = with python3Packages; [ mock pytest pytestcov pytestrunner flake8 ];
|
2017-07-09 00:59:08 -07:00
|
|
|
|
2016-01-09 09:08:43 -08:00
|
|
|
postInstall = let
|
2015-09-24 00:44:10 -07:00
|
|
|
mapPath = f: x: stdenv.lib.concatStringsSep ":" (map f x);
|
|
|
|
in ''
|
2016-01-09 09:08:43 -08:00
|
|
|
wrapProgram $out/bin/sshuttle \
|
|
|
|
--prefix PATH : "${mapPath (x: "${x}/bin") buildInputs}" \
|
2013-10-05 07:45:51 -07:00
|
|
|
'';
|
2017-09-25 23:16:14 -07:00
|
|
|
|
2013-10-05 07:45:51 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/sshuttle/sshuttle/";
|
2013-10-05 07:45:51 -07:00
|
|
|
description = "Transparent proxy server that works as a poor man's VPN";
|
2015-09-23 03:19:24 -07:00
|
|
|
longDescription = ''
|
|
|
|
Forward connections over SSH, without requiring administrator access to the
|
2019-03-05 16:37:33 -08:00
|
|
|
target network (though it does require Python 2.7, Python 3.5 or later at both ends).
|
2015-09-23 03:19:24 -07:00
|
|
|
Works with Linux and Mac OS and supports DNS tunneling.
|
|
|
|
'';
|
2018-08-11 05:36:01 -07:00
|
|
|
license = licenses.gpl2;
|
2019-03-05 16:37:33 -08:00
|
|
|
maintainers = with maintainers; [ domenkozar carlosdagos ];
|
2013-10-05 07:45:51 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|