corkscrew: init at 2.0

This commit is contained in:
Yann Hodique 2015-12-07 20:42:33 -08:00
parent 7e2a828fd6
commit e0fe879562
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "corkscrew-2.0";
src = fetchurl {
url = "http://agroman.net/corkscrew/${name}.tar.gz";
sha256 = "0d0fcbb41cba4a81c4ab494459472086f377f9edb78a2e2238ed19b58956b0be";
};
meta = with stdenv.lib; {
homepage = http://agroman.net/corkscrew/;
description = "A tool for tunneling SSH through HTTP proxies";
license = stdenv.lib.licenses.gpl2;
};
}

View file

@ -1159,6 +1159,8 @@ let
coreutils-prefixed = coreutils.override { withPrefix = true; };
corkscrew = callPackage ../tools/networking/corkscrew { };
cpio = callPackage ../tools/archivers/cpio { };
crackxls = callPackage ../tools/security/crackxls { };