···11+{ stdenv, fetchurl }:
22+33+stdenv.mkDerivation rec {
44+ version = "3.3";
55+ name = "httptunnel-${version}";
66+77+ src = fetchurl {
88+ url = "http://www.nocrew.org/software/httptunnel/${name}.tar.gz";
99+ sha256 = "0mn5s6p68n32xzadz6ds5i6bp44dyxzkq68r1yljlv470jr84bql";
1010+ };
1111+1212+ meta = with stdenv.lib; {
1313+ description = "Creates a bidirectional virtual data connection tunnelled in HTTP requests";
1414+ homepage = http://www.nocrew.org/software/httptunnel;
1515+ license = licenses.gpl2;
1616+ maintainers = with maintainers; [ koral ];
1717+ platforms = platforms.unix;
1818+ };
1919+}
+2
pkgs/top-level/all-packages.nix
···1351135113521352 httpfs2 = callPackage ../tools/filesystems/httpfs { };
1353135313541354+ httptunnel = callPackage ../tools/networking/httptunnel { };
13551355+13541356 # FIXME: This Hydra snapshot is outdated and depends on the `nixPerl',
13551357 # which no longer exists.
13561358 #