nixpkgs/pkgs/tools/security/sshuttle/default.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-07-07 17:54:40 -07:00
, python3Packages
, makeWrapper
, coreutils
, iptables
, nettools
, openssh
, procps
}:
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";
2020-03-29 03:34:50 -07:00
src = python3Packages.fetchPypi {
inherit pname version;
2020-07-20 02:20:00 -07:00
sha256 = "0fff1c88669a20bb6a4e7331960673a3a02a2e04ff163e4c9299496646edcf61";
};
2018-08-30 02:11:33 -07:00
patches = [ ./sudo.patch ];
2019-03-05 16:37:33 -08:00
nativeBuildInputs = [ makeWrapper python3Packages.setuptools_scm ];
2019-03-05 16:37:33 -08:00
checkInputs = with python3Packages; [ mock pytest pytestcov pytestrunner flake8 ];
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}" \
'';
meta = with 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
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).
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 ];
platforms = platforms.unix;
};
}