mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Added httptunnel package.
This commit is contained in:
parent
9c3c7a75d3
commit
719b910eb3
19
pkgs/tools/networking/httptunnel/default.nix
Normal file
19
pkgs/tools/networking/httptunnel/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.3";
|
||||
name = "httptunnel-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.nocrew.org/software/httptunnel/${name}.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;
|
||||
};
|
||||
}
|
|
@ -1349,6 +1349,8 @@ let
|
|||
|
||||
httpfs2 = callPackage ../tools/filesystems/httpfs { };
|
||||
|
||||
httptunnel = callPackage ../tools/networking/httptunnel { };
|
||||
|
||||
# FIXME: This Hydra snapshot is outdated and depends on the `nixPerl',
|
||||
# which no longer exists.
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue