66fb849432
Fixes #136093.
30 lines
702 B
Nix
30 lines
702 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "proxychains";
|
|
version = "4.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "haad";
|
|
repo = pname;
|
|
rev = "${pname}-${version}";
|
|
sha256 = "083xdg6fsn8c2ns93lvy794rixxq8va6jdf99w1z0xi4j7f1nyjw";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Suppress compiler warning. Remove it when upstream fix arrives
|
|
substituteInPlace Makefile --replace "-Werror" "-Werror -Wno-stringop-truncation"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Proxifier for SOCKS proxies";
|
|
homepage = "http://proxychains.sourceforge.net";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ fab ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|