Merge pull request #11547 from sigma/corkscrew

add corkscrew networking tool
This commit is contained in:
Pascal Wittmann 2015-12-08 17:47:46 +01:00
commit 83c22f9c8f
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 { };