lol
1{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2
3stdenv.mkDerivation rec {
4 pname = "redir";
5 version = "3.3";
6
7 src = fetchFromGitHub {
8 owner = "troglobit";
9 repo = "redir";
10 rev = "v${version}";
11 sha256 = "13n401i3q0xwpfgr21y47kgihi057wbh59xlsna8b8zpm973qny1";
12 };
13
14 nativeBuildInputs = [ autoreconfHook ];
15
16 meta = {
17 description = "A TCP port redirector for UNIX";
18 homepage = "https://github.com/troglobit/redir";
19 license = lib.licenses.gpl2;
20 maintainers = with lib.maintainers; [ ];
21 platforms = lib.platforms.unix;
22 };
23}