Merge pull request #4130 from k0ral/httptunnel

Added httptunnel package.

+21
+19
pkgs/tools/networking/httptunnel/default.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "3.3"; 5 + name = "httptunnel-${version}"; 6 + 7 + src = fetchurl { 8 + url = "http://www.nocrew.org/software/httptunnel/${name}.tar.gz"; 9 + sha256 = "0mn5s6p68n32xzadz6ds5i6bp44dyxzkq68r1yljlv470jr84bql"; 10 + }; 11 + 12 + meta = with stdenv.lib; { 13 + description = "Creates a bidirectional virtual data connection tunnelled in HTTP requests"; 14 + homepage = http://www.nocrew.org/software/httptunnel; 15 + license = licenses.gpl2; 16 + maintainers = with maintainers; [ koral ]; 17 + platforms = platforms.unix; 18 + }; 19 + }
+2
pkgs/top-level/all-packages.nix
··· 1351 1351 1352 1352 httpfs2 = callPackage ../tools/filesystems/httpfs { }; 1353 1353 1354 + httptunnel = callPackage ../tools/networking/httptunnel { }; 1355 + 1354 1356 # FIXME: This Hydra snapshot is outdated and depends on the `nixPerl', 1355 1357 # which no longer exists. 1356 1358 #