depot/third_party/nixpkgs/pkgs/tools/networking/httptunnel/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

19 lines
578 B
Nix

{ lib, 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 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;
};
}