2014-09-17 18:55:45 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "3.3";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "httptunnel";
|
2014-09-17 18:55:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://www.nocrew.org/software/httptunnel/${pname}-${version}.tar.gz";
|
2014-09-17 18:55:45 +01:00
|
|
|
sha256 = "0mn5s6p68n32xzadz6ds5i6bp44dyxzkq68r1yljlv470jr84bql";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Creates a bidirectional virtual data connection tunnelled in HTTP requests";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.nocrew.org/software/httptunnel";
|
2014-09-17 18:55:45 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ koral ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|