2012-05-27 04:28:19 -07:00
|
|
|
{ stdenv, fetchgit } :
|
2009-01-12 13:12:07 -08:00
|
|
|
stdenv.mkDerivation {
|
2012-05-27 05:37:59 -07:00
|
|
|
name = "proxychains-4.0.1-head";
|
2012-05-27 04:28:19 -07:00
|
|
|
src = fetchgit {
|
|
|
|
url = https://github.com/haad/proxychains.git;
|
2012-05-27 05:37:59 -07:00
|
|
|
rev = "c9b8ce35b24f9d4e80563242b759dff54867163f";
|
2016-06-02 04:26:44 -07:00
|
|
|
sha256 = "163h3d3lpglbzjadf8a9kfaf0i1ds25r7si6ll6d5khn1835zik5";
|
2009-01-12 13:12:07 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 02:49:53 -07:00
|
|
|
description = "Proxifier for SOCKS proxies";
|
2009-01-12 13:12:07 -08:00
|
|
|
homepage = http://proxychains.sourceforge.net;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2015-08-25 05:21:56 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-01-12 13:12:07 -08:00
|
|
|
};
|
|
|
|
}
|