summary refs log tree commit diff
path: root/pkgs/tools/networking/httptunnel
diff options
context:
space:
mode:
authorkoral <koral att mailoo dott org>2014-09-17 19:55:45 +0200
committerkoral <koral att mailoo dott org>2014-09-17 19:55:45 +0200
commit719b910eb3789055bbda8b8d7a9202990a943cd4 (patch)
treed495b3d7001d9ddf6bc51aea26c8c06e10dec275 /pkgs/tools/networking/httptunnel
parent9c3c7a75d3a5969bd89922a67f28c3d760f4b796 (diff)
downloadnixpkgs-719b910eb3789055bbda8b8d7a9202990a943cd4.tar
nixpkgs-719b910eb3789055bbda8b8d7a9202990a943cd4.tar.gz
nixpkgs-719b910eb3789055bbda8b8d7a9202990a943cd4.tar.bz2
nixpkgs-719b910eb3789055bbda8b8d7a9202990a943cd4.tar.lz
nixpkgs-719b910eb3789055bbda8b8d7a9202990a943cd4.tar.xz
nixpkgs-719b910eb3789055bbda8b8d7a9202990a943cd4.tar.zst
nixpkgs-719b910eb3789055bbda8b8d7a9202990a943cd4.zip
Added httptunnel package.
Diffstat (limited to 'pkgs/tools/networking/httptunnel')
-rw-r--r--pkgs/tools/networking/httptunnel/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/tools/networking/httptunnel/default.nix b/pkgs/tools/networking/httptunnel/default.nix
new file mode 100644
index 00000000000..c47dd03cb9d
--- /dev/null
+++ b/pkgs/tools/networking/httptunnel/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  version = "3.3";
+  name    = "httptunnel-${version}";
+
+  src = fetchurl {
+    url    = "http://www.nocrew.org/software/httptunnel/${name}.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;
+  };
+}