mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
39 lines
875 B
Nix
39 lines
875 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";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/NixOS/nixpkgs/issues/136093
|
|
./swap-priority-4-and-5-in-get_config_path.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
# Suppress compiler warning. Remove it when upstream fix arrives
|
|
substituteInPlace Makefile --replace "-Werror" "-Werror -Wno-stringop-truncation"
|
|
'';
|
|
|
|
installFlags = [
|
|
"install-config"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Proxifier for SOCKS proxies";
|
|
homepage = "https://proxychains.sourceforge.net";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ fab ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|