mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, python3Packages
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, makeWrapper
|
|
, sphinx
|
|
, coreutils
|
|
, iptables
|
|
, nettools
|
|
, openssh
|
|
, procps
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "sshuttle";
|
|
version = "1.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sshuttle";
|
|
repo = "sshuttle";
|
|
rev = "v${version}";
|
|
hash = "sha256-7jiDTjtL4FiQ4GimSPtUDKPUA29l22a7XILN/s4/DQY=";
|
|
};
|
|
|
|
patches = [ ./sudo.patch ];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
makeWrapper
|
|
python3Packages.setuptools-scm
|
|
sphinx
|
|
];
|
|
|
|
nativeCheckInputs = with python3Packages; [ pytest-cov-stub pytestCheckHook ];
|
|
|
|
postBuild = ''
|
|
make man -C docs
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage docs/_build/man/*
|
|
|
|
wrapProgram $out/bin/sshuttle \
|
|
--prefix PATH : "${lib.makeBinPath ([ coreutils openssh procps ] ++ lib.optionals stdenv.hostPlatform.isLinux [ iptables nettools ])}" \
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Transparent proxy server that works as a poor man's VPN";
|
|
mainProgram = "sshuttle";
|
|
longDescription = ''
|
|
Forward connections over SSH, without requiring administrator access to the
|
|
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.
|
|
'';
|
|
homepage = "https://github.com/sshuttle/sshuttle";
|
|
changelog = "https://github.com/sshuttle/sshuttle/blob/v${version}/CHANGES.rst";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ domenkozar carlosdagos ];
|
|
};
|
|
}
|