2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv
|
2020-07-07 17:54:40 -07:00
|
|
|
, python3Packages
|
|
|
|
, makeWrapper
|
|
|
|
, 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";
|
2020-07-20 02:20:00 -07:00
|
|
|
version = "1.0.3";
|
2013-10-05 07:45:51 -07:00
|
|
|
|
2020-03-29 03:34:50 -07:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-20 02:20:00 -07:00
|
|
|
sha256 = "0fff1c88669a20bb6a4e7331960673a3a02a2e04ff163e4c9299496646edcf61";
|
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 ];
|
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
|
|
|
|
2020-07-07 17:54:40 -07:00
|
|
|
runtimeDeps = [ coreutils openssh procps ] ++ stdenv.lib.optionals stdenv.isLinux [ iptables nettools ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/sshuttle \
|
|
|
|
--prefix PATH : "${stdenv.lib.makeBinPath runtimeDeps}" \
|
2013-10-05 07:45:51 -07:00
|
|
|
'';
|
2017-09-25 23:16:14 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with 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;
|
|
|
|
};
|
|
|
|
}
|