mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ stdenv, pythonPackages, fetchurl, makeWrapper, pandoc
|
|
, coreutils, iptables, nettools, openssh, procps }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "sshuttle-${version}";
|
|
version = "0.78.0";
|
|
|
|
src = fetchurl {
|
|
sha256 = "18hrwi2gyri1n2rq0nghvv7hfhbhh5h67am89524vc1yyx40vn3b";
|
|
url = "mirror://pypi/s/sshuttle/${name}.tar.gz";
|
|
};
|
|
|
|
patches = [ ./sudo.patch ];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ PyXAPI mock pytest ];
|
|
nativeBuildInputs = [ makeWrapper pandoc pythonPackages.setuptools_scm ];
|
|
buildInputs =
|
|
[ coreutils openssh ] ++
|
|
stdenv.lib.optionals stdenv.isLinux [ iptables nettools procps ];
|
|
|
|
postInstall = let
|
|
mapPath = f: x: stdenv.lib.concatStringsSep ":" (map f x);
|
|
in ''
|
|
wrapProgram $out/bin/sshuttle \
|
|
--prefix PATH : "${mapPath (x: "${x}/bin") buildInputs}" \
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/sshuttle/sshuttle/;
|
|
description = "Transparent proxy server that works as a poor man's VPN";
|
|
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.
|
|
'';
|
|
maintainers = with maintainers; [ domenkozar nckx ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|