2017-07-09 09:59:08 +02:00
|
|
|
{ stdenv, python3Packages, fetchurl, makeWrapper, pandoc
|
2017-09-26 08:16:14 +02:00
|
|
|
, coreutils, iptables, nettools, openssh, procps, fetchpatch }:
|
|
|
|
|
2017-07-09 09:59:08 +02:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2013-10-05 16:45:51 +02:00
|
|
|
name = "sshuttle-${version}";
|
2018-08-30 11:11:33 +02:00
|
|
|
version = "0.78.4";
|
2013-10-05 16:45:51 +02:00
|
|
|
|
2016-01-17 21:45:43 +01:00
|
|
|
src = fetchurl {
|
2018-08-30 11:11:33 +02:00
|
|
|
sha256 = "0pqk43kd7crqhg6qgnl8kapncwgw1xgaf02zarzypcw64kvdih9h";
|
2016-04-26 14:38:03 +02:00
|
|
|
url = "mirror://pypi/s/sshuttle/${name}.tar.gz";
|
2013-10-05 16:45:51 +02:00
|
|
|
};
|
|
|
|
|
2018-08-30 11:11:33 +02:00
|
|
|
patches = [ ./sudo.patch ];
|
2015-09-24 01:32:25 +02:00
|
|
|
|
2018-08-20 21:11:29 +02:00
|
|
|
nativeBuildInputs = [ makeWrapper python3Packages.setuptools_scm ] ++ stdenv.lib.optional (stdenv.hostPlatform.system != "i686-linux") pandoc;
|
2015-09-24 09:44:10 +02:00
|
|
|
buildInputs =
|
2018-03-26 06:01:31 +02:00
|
|
|
[ coreutils openssh procps nettools ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ iptables ];
|
2013-10-05 16:45:51 +02:00
|
|
|
|
2017-07-09 12:17:02 +02:00
|
|
|
checkInputs = with python3Packages; [ mock pytest pytestrunner ];
|
2017-07-09 09:59:08 +02:00
|
|
|
|
2016-01-09 18:08:43 +01:00
|
|
|
postInstall = let
|
2015-09-24 09:44:10 +02:00
|
|
|
mapPath = f: x: stdenv.lib.concatStringsSep ":" (map f x);
|
|
|
|
in ''
|
2016-01-09 18:08:43 +01:00
|
|
|
wrapProgram $out/bin/sshuttle \
|
|
|
|
--prefix PATH : "${mapPath (x: "${x}/bin") buildInputs}" \
|
2013-10-05 16:45:51 +02:00
|
|
|
'';
|
2017-09-26 08:16:14 +02:00
|
|
|
|
2013-10-05 16:45:51 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-01-17 21:45:43 +01:00
|
|
|
homepage = https://github.com/sshuttle/sshuttle/;
|
2013-10-05 16:45:51 +02:00
|
|
|
description = "Transparent proxy server that works as a poor man's VPN";
|
2015-09-23 12:19:24 +02:00
|
|
|
longDescription = ''
|
|
|
|
Forward connections over SSH, without requiring administrator access to the
|
|
|
|
target network (though it does require Python 2 at both ends).
|
|
|
|
Works with Linux and Mac OS and supports DNS tunneling.
|
|
|
|
'';
|
2018-08-11 14:36:01 +02:00
|
|
|
license = licenses.gpl2;
|
2018-01-16 22:59:13 +01:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2013-10-05 16:45:51 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|