2017-07-09 08:59:08 +01:00
|
|
|
{ stdenv, python3Packages, fetchurl, makeWrapper, pandoc
|
2017-09-26 07:16:14 +01:00
|
|
|
, coreutils, iptables, nettools, openssh, procps, fetchpatch }:
|
|
|
|
|
2017-07-09 08:59:08 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2013-10-05 15:45:51 +01:00
|
|
|
name = "sshuttle-${version}";
|
2018-08-30 10:11:33 +01:00
|
|
|
version = "0.78.4";
|
2013-10-05 15:45:51 +01:00
|
|
|
|
2016-01-17 20:45:43 +00:00
|
|
|
src = fetchurl {
|
2018-08-30 10:11:33 +01:00
|
|
|
sha256 = "0pqk43kd7crqhg6qgnl8kapncwgw1xgaf02zarzypcw64kvdih9h";
|
2016-04-26 13:38:03 +01:00
|
|
|
url = "mirror://pypi/s/sshuttle/${name}.tar.gz";
|
2013-10-05 15:45:51 +01:00
|
|
|
};
|
|
|
|
|
2018-08-30 10:11:33 +01:00
|
|
|
patches = [ ./sudo.patch ];
|
2015-09-24 00:32:25 +01:00
|
|
|
|
2018-08-20 20:11:29 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper python3Packages.setuptools_scm ] ++ stdenv.lib.optional (stdenv.hostPlatform.system != "i686-linux") pandoc;
|
2015-09-24 08:44:10 +01:00
|
|
|
buildInputs =
|
2018-03-26 05:01:31 +01:00
|
|
|
[ coreutils openssh procps nettools ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ iptables ];
|
2013-10-05 15:45:51 +01:00
|
|
|
|
2017-07-09 11:17:02 +01:00
|
|
|
checkInputs = with python3Packages; [ mock pytest pytestrunner ];
|
2017-07-09 08:59:08 +01:00
|
|
|
|
2016-01-09 17:08:43 +00:00
|
|
|
postInstall = let
|
2015-09-24 08:44:10 +01:00
|
|
|
mapPath = f: x: stdenv.lib.concatStringsSep ":" (map f x);
|
|
|
|
in ''
|
2016-01-09 17:08:43 +00:00
|
|
|
wrapProgram $out/bin/sshuttle \
|
|
|
|
--prefix PATH : "${mapPath (x: "${x}/bin") buildInputs}" \
|
2013-10-05 15:45:51 +01:00
|
|
|
'';
|
2017-09-26 07:16:14 +01:00
|
|
|
|
2013-10-05 15:45:51 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-01-17 20:45:43 +00:00
|
|
|
homepage = https://github.com/sshuttle/sshuttle/;
|
2013-10-05 15:45:51 +01:00
|
|
|
description = "Transparent proxy server that works as a poor man's VPN";
|
2015-09-23 11:19:24 +01: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 13:36:01 +01:00
|
|
|
license = licenses.gpl2;
|
2018-01-16 21:59:13 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2013-10-05 15:45:51 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|