proxychains: 4.0.1-head -> 4.2.0

This commit is contained in:
Kranium Gikos Mendoza 2016-07-05 19:24:21 +08:00
parent 85781f9bb6
commit 796ced26aa
1 changed files with 10 additions and 7 deletions

View File

@ -1,10 +1,13 @@
{ stdenv, fetchgit } : { stdenv, fetchFromGitHub } :
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "proxychains-4.0.1-head"; name = "proxychains-${version}";
src = fetchgit { version = "4.2.0";
url = https://github.com/haad/proxychains.git;
rev = "c9b8ce35b24f9d4e80563242b759dff54867163f"; src = fetchFromGitHub {
sha256 = "163h3d3lpglbzjadf8a9kfaf0i1ds25r7si6ll6d5khn1835zik5"; owner = "haad";
repo = "proxychains";
rev = name;
sha256 = "015skh3z1jmm8kxbm3nkqv1w56kcvabdmcbmpwzywxr4xnh3x3pc";
}; };
meta = { meta = {