nixpkgs/pkgs/tools/networking/httptunnel/default.nix

20 lines
578 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2014-09-17 17:55:45 +00:00
stdenv.mkDerivation rec {
version = "3.3";
pname = "httptunnel";
2014-09-17 17:55:45 +00:00
src = fetchurl {
url = "http://www.nocrew.org/software/httptunnel/${pname}-${version}.tar.gz";
2014-09-17 17:55:45 +00:00
sha256 = "0mn5s6p68n32xzadz6ds5i6bp44dyxzkq68r1yljlv470jr84bql";
};
meta = with lib; {
2014-09-17 17:55:45 +00:00
description = "Creates a bidirectional virtual data connection tunnelled in HTTP requests";
homepage = "http://www.nocrew.org/software/httptunnel";
2014-09-17 17:55:45 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ koral ];
platforms = platforms.unix;
};
}