1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
nixpkgs/pkgs/by-name/ht/httptunnel/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
717 B
Nix
Raw Permalink Normal View History

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
}:
2014-09-17 18:55:45 +01:00
stdenv.mkDerivation rec {
version = "3.3-unstable-2023-05-08";
pname = "httptunnel";
2014-09-17 18:55:45 +01:00
src = fetchFromGitHub {
owner = "larsbrinkhoff";
repo = "httptunnel";
rev = "d8f91af976c97a6006a5bd1ad7149380c39ba454";
hash = "sha256-fUaVHE3nxq3fU7DYCvaQTOoMzax/qFH8cMegFLLybNk=";
2014-09-17 18:55:45 +01:00
};
nativeBuildInputs = [
autoreconfHook
];
meta = with lib; {
2014-09-17 18:55:45 +01:00
description = "Creates a bidirectional virtual data connection tunnelled in HTTP requests";
homepage = "http://www.gnu.org/software/httptunnel/httptunnel.html";
2024-04-26 12:35:31 +01:00
license = licenses.gpl2Only;
2014-09-17 18:55:45 +01:00
maintainers = with maintainers; [ koral ];
platforms = platforms.unix;
};
}