depot/third_party/nixpkgs/pkgs/tools/networking/httptunnel/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

19 lines
580 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "3.3";
pname = "httptunnel";
src = fetchurl {
url = "http://www.nocrew.org/software/httptunnel/${pname}-${version}.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;
};
}