3
0
Fork 0
forked from mirrors/nixpkgs

6tunnel: init at 0.13

This commit is contained in:
Oleksii Filonenko 2019-12-04 13:43:43 +02:00
parent deecdeae30
commit f56cd1adce
No known key found for this signature in database
GPG key ID: F3510FE5691629A1
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "6tunnel";
version = "0.13";
src = fetchFromGitHub {
owner = "wojtekka";
repo = pname;
rev = version;
sha256 = "0zsx9d6xz5w8zvrqsm8r625gpbqqhjzvjdzc3z8yix668yg8ff8h";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "Tunnelling for application that don't speak IPv6";
homepage = "https://github.com/wojtekka/6tunnel";
license = licenses.gpl2;
maintainers = with maintainers; [ filalex77 ];
platforms = platforms.unix;
};
}

View file

@ -480,6 +480,8 @@ in
_1password = callPackage ../applications/misc/1password { };
_6tunnel = callPackage ../tools/networking/6tunnel { };
_9pfs = callPackage ../tools/filesystems/9pfs { };
a2ps = callPackage ../tools/text/a2ps { };