3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/proxychains-ng/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
653 B
Nix
Raw Normal View History

2021-09-13 09:09:04 +01:00
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "proxychains-ng";
2022-01-23 15:29:19 +00:00
version = "4.16";
2021-09-13 09:09:04 +01:00
src = fetchFromGitHub {
owner = "rofl0r";
repo = pname;
rev = "v${version}";
2022-01-23 15:29:19 +00:00
sha256 = "sha256-uu/zN6W0ue526/3a9QeYg6J4HLaovZJVOYXksjouYok=";
2021-09-13 09:09:04 +01:00
};
meta = with lib; {
description = "A preloader which hooks calls to sockets in dynamically linked programs and redirects it through one or more socks/http proxies";
homepage = "https://github.com/rofl0r/proxychains-ng";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ zenithal ];
platforms = platforms.linux ++ [ "aarch64-darwin" ];
2021-09-13 09:09:04 +01:00
};
}