2012-05-27 04:28:19 -07:00
|
|
|
{ stdenv, fetchgit } :
|
2009-01-12 13:12:07 -08:00
|
|
|
stdenv.mkDerivation {
|
2012-05-27 04:28:19 -07:00
|
|
|
name = "proxychains-4.0";
|
|
|
|
src = fetchgit {
|
|
|
|
url = https://github.com/haad/proxychains.git;
|
|
|
|
# sha256 = "9a27657fe9f6e17de9e402ba5c60f9954e7e79fb270c1ef242770f3c01d8515a";
|
2009-01-12 13:12:07 -08:00
|
|
|
};
|
|
|
|
|
2012-05-27 04:28:19 -07:00
|
|
|
# patchPhase = "sed -e s@libproxychains.so@$out/lib/libproxychains.so@ -i proxychains/proxychains";
|
2009-01-12 13:12:07 -08:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Proxifier for SOCKS proxies.";
|
|
|
|
homepage = http://proxychains.sourceforge.net;
|
|
|
|
license = "GPLv2+";
|
|
|
|
};
|
|
|
|
}
|