latte-dock: 0.9.11 -> 0.9.12
[NixPkgs.git] / pkgs / tools / networking / proxychains / default.nix
blob56a553c0c803e143c47a6451869b661028ca9b9d
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 }:
6 stdenv.mkDerivation rec {
7   pname = "proxychains";
8   version = "4.4.0";
10   src = fetchFromGitHub {
11     owner = "haad";
12     repo = pname;
13     rev = "${pname}-${version}";
14     sha256 = "083xdg6fsn8c2ns93lvy794rixxq8va6jdf99w1z0xi4j7f1nyjw";
15   };
17   postPatch = ''
18     # Suppress compiler warning. Remove it when upstream fix arrives
19     substituteInPlace Makefile --replace "-Werror" "-Werror -Wno-stringop-truncation"
20   '';
22   postInstall = ''
23     cp src/proxychains.conf $out/etc
24   '';
26   meta = with lib; {
27     description = "Proxifier for SOCKS proxies";
28     homepage = "http://proxychains.sourceforge.net";
29     license = licenses.gpl2Plus;
30     maintainers = with maintainers; [ fab ];
31     platforms = platforms.linux;
32   };