2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "redir";
|
|
|
|
version = "3.3";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "troglobit";
|
|
|
|
repo = "redir";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "13n401i3q0xwpfgr21y47kgihi057wbh59xlsna8b8zpm973qny1";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "TCP port redirector for UNIX";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/troglobit/redir";
|
2024-05-15 15:35:15 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2024-07-31 10:19:44 +00:00
|
|
|
maintainers = [ ];
|
2021-03-23 19:22:30 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2024-02-29 20:09:43 +00:00
|
|
|
mainProgram = "redir";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|