summary refs log tree commit diff
path: root/pkgs/tools/networking/httptunnel/default.nix
blob: df62f90ad0bb2258d734e77a59f646b9dc1c1f40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  version = "3.3";
  pname = "httptunnel";

  src = fetchurl {
    url    = "http://www.nocrew.org/software/httptunnel/${pname}-${version}.tar.gz";
    sha256 = "0mn5s6p68n32xzadz6ds5i6bp44dyxzkq68r1yljlv470jr84bql";
  };

  meta = with stdenv.lib; {
    description = "Creates a bidirectional virtual data connection tunnelled in HTTP requests";
    homepage    = http://www.nocrew.org/software/httptunnel;
    license     = licenses.gpl2;
    maintainers = with maintainers; [ koral ];
    platforms   = platforms.unix;
  };
}