2016-01-17 20:45:43 +00:00
|
|
|
{ stdenv, pythonPackages, fetchurl, makeWrapper, pandoc
|
2016-01-09 17:08:43 +00:00
|
|
|
, coreutils, iptables, nettools, openssh, procps }:
|
2013-10-05 14:45:51 +00:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2013-10-05 14:45:51 +00:00
|
|
|
name = "sshuttle-${version}";
|
2016-04-08 15:39:28 +00:00
|
|
|
version = "0.78.0";
|
2013-10-05 14:45:51 +00:00
|
|
|
|
2016-01-17 20:45:43 +00:00
|
|
|
src = fetchurl {
|
2016-04-08 15:39:28 +00:00
|
|
|
sha256 = "18hrwi2gyri1n2rq0nghvv7hfhbhh5h67am89524vc1yyx40vn3b";
|
2016-04-26 12:38:03 +00:00
|
|
|
url = "mirror://pypi/s/sshuttle/${name}.tar.gz";
|
2013-10-05 14:45:51 +00:00
|
|
|
};
|
|
|
|
|
2016-01-09 17:08:43 +00:00
|
|
|
patches = [ ./sudo.patch ];
|
2015-09-23 23:32:25 +00:00
|
|
|
|
2016-01-09 17:08:43 +00:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ PyXAPI mock pytest ];
|
2016-01-17 20:45:43 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper pandoc pythonPackages.setuptools_scm ];
|
2015-09-24 07:44:10 +00:00
|
|
|
buildInputs =
|
2016-01-09 17:08:43 +00:00
|
|
|
[ coreutils openssh ] ++
|
|
|
|
stdenv.lib.optionals stdenv.isLinux [ iptables nettools procps ];
|
2013-10-05 14:45:51 +00:00
|
|
|
|
2016-01-09 17:08:43 +00:00
|
|
|
postInstall = let
|
2015-09-24 07:44:10 +00: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 14:45:51 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-01-17 20:45:43 +00:00
|
|
|
homepage = https://github.com/sshuttle/sshuttle/;
|
2013-10-05 14:45:51 +00:00
|
|
|
description = "Transparent proxy server that works as a poor man's VPN";
|
2015-09-23 10:19:24 +00: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.
|
|
|
|
'';
|
2016-05-17 11:57:28 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar nckx ];
|
2013-10-05 14:45:51 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|