nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5 autoreconfHook,
6}:
7
8stdenv.mkDerivation {
9 version = "3.3-unstable-2023-05-08";
10 pname = "httptunnel";
11
12 src = fetchFromGitHub {
13 owner = "larsbrinkhoff";
14 repo = "httptunnel";
15 rev = "d8f91af976c97a6006a5bd1ad7149380c39ba454";
16 hash = "sha256-fUaVHE3nxq3fU7DYCvaQTOoMzax/qFH8cMegFLLybNk=";
17 };
18
19 nativeBuildInputs = [
20 autoreconfHook
21 ];
22
23 meta = with lib; {
24 description = "Creates a bidirectional virtual data connection tunnelled in HTTP requests";
25 homepage = "http://www.gnu.org/software/httptunnel/httptunnel.html";
26 license = licenses.gpl2Only;
27 maintainers = with maintainers; [ koral ];
28 platforms = platforms.unix;
29 };
30}