forked from mirrors/nixpkgs
6tunnel: init at 0.13
This commit is contained in:
parent
deecdeae30
commit
f56cd1adce
23
pkgs/tools/networking/6tunnel/default.nix
Normal file
23
pkgs/tools/networking/6tunnel/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue