at release-16.03-start 16 lines 497 B view raw
1{ stdenv, fetchgit } : 2stdenv.mkDerivation { 3 name = "proxychains-4.0.1-head"; 4 src = fetchgit { 5 url = https://github.com/haad/proxychains.git; 6 rev = "c9b8ce35b24f9d4e80563242b759dff54867163f"; 7 sha256 = "4ab73e14c5db6d32d88e0710a9f1b7c9c77b59574a7cf0e9f69f34d8ec9fb643"; 8 }; 9 10 meta = { 11 description = "Proxifier for SOCKS proxies"; 12 homepage = http://proxychains.sourceforge.net; 13 license = stdenv.lib.licenses.gpl2Plus; 14 platforms = stdenv.lib.platforms.linux; 15 }; 16}