2015-12-13 22:31:00 +00:00
|
|
|
{ stdenv, fetchurl, automake }:
|
2015-12-08 04:42:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "corkscrew-2.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://agroman.net/corkscrew/${name}.tar.gz";
|
|
|
|
sha256 = "0d0fcbb41cba4a81c4ab494459472086f377f9edb78a2e2238ed19b58956b0be";
|
|
|
|
};
|
|
|
|
|
2015-12-13 22:31:00 +00:00
|
|
|
preConfigure = ''
|
|
|
|
ln -sf ${automake}/share/automake-*/config.sub config.sub
|
|
|
|
ln -sf ${automake}/share/automake-*/config.guess config.guess
|
|
|
|
'';
|
|
|
|
|
2015-12-08 04:42:33 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://agroman.net/corkscrew/";
|
2015-12-08 04:42:33 +00:00
|
|
|
description = "A tool for tunneling SSH through HTTP proxies";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.unix;
|
2015-12-08 04:42:33 +00:00
|
|
|
};
|
|
|
|
}
|