nixpkgs/pkgs/tools/networking/tnat64/default.nix

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

33 lines
955 B
Nix
Raw Normal View History

2021-05-04 12:05:08 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "tnat64";
2021-10-17 13:50:49 +00:00
version = "0.06";
2021-05-04 12:05:08 +00:00
src = fetchFromGitHub {
owner = "andrewshadura";
repo = pname;
rev = "${pname}-${version}";
2021-10-17 13:50:49 +00:00
sha256 = "191j1fpr3bw6fk48npl99z7iq6m1g33f15xk5cay1gnk5f46i2j6";
2021-05-04 12:05:08 +00:00
};
configureFlags = [ "--libdir=$(out)/lib" ];
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "IPv4 to IPv6 interceptor";
homepage = "https://github.com/andrewshadura/tnat64";
license = licenses.gpl2Plus;
longDescription = ''
TNAT64 is an interceptor which redirects outgoing TCPv4 connections
through NAT64, thus enabling an application running on an IPv6-only host
to communicate with the IPv4 world, even if that application does not
support IPv6 at all.
'';
platforms = platforms.unix;
badPlatforms = platforms.darwin;
maintainers = [ maintainers.rnhmjoj ];
};
}