about summary refs log tree commit diff
path: root/pkgs/tools/networking/proxychains/default.nix
blob: ed19f9d1674fc04da284eb2a400b5c8815fee9c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchFromGitHub } :
stdenv.mkDerivation rec {
  name = "proxychains-${version}";
  version = "4.2.0";

  src = fetchFromGitHub {
    owner = "haad";
    repo = "proxychains";
    rev = name;
    sha256 = "015skh3z1jmm8kxbm3nkqv1w56kcvabdmcbmpwzywxr4xnh3x3pc";
  };

  meta = {
    description = "Proxifier for SOCKS proxies";
    homepage = http://proxychains.sourceforge.net;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.linux;
  };
}