summary refs log tree commit diff
path: root/pkgs/tools/networking/httptunnel/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/httptunnel/default.nix')
-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;
+  };
+}