Files

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

31 lines
716 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
stdenv,
lib,
fetchFromGitHub,
autoreconfHook,
}:
stdenv.mkDerivation rec {
pname = "6tunnel";
version = "0.14";
src = fetchFromGitHub {
owner = "wojtekka";
repo = "6tunnel";
tag = version;
sha256 = "sha256-ftTAFjHlXRrXH6co8bX0RY092lAmv15svZn4BKGVuq0=";
};
nativeBuildInputs = [ autoreconfHook ];
meta = {
description = "Tunnelling for application that don't speak IPv6";
mainProgram = "6tunnel";
homepage = "https://github.com/wojtekka/6tunnel";
changelog = "https://github.com/wojtekka/6tunnel/blob/${version}/ChangeLog";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ Br1ght0ne ];
platforms = lib.platforms.unix;
};
}