python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / httptunnel / default.nix
blob13ef641753586a817473e3cf9d5232cfc2ca8c6d
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   version = "3.3";
5   pname = "httptunnel";
7   src = fetchurl {
8     url    = "http://www.nocrew.org/software/httptunnel/${pname}-${version}.tar.gz";
9     sha256 = "0mn5s6p68n32xzadz6ds5i6bp44dyxzkq68r1yljlv470jr84bql";
10   };
12   meta = with 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   };