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

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

24 lines
567 B
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2015-09-20 23:38:40 +02:00
stdenv.mkDerivation rec {
pname = "redir";
version = "3.3";
2015-09-20 23:38:40 +02:00
2017-02-02 18:54:10 +01:00
src = fetchFromGitHub {
owner = "troglobit";
repo = "redir";
rev = "v${version}";
sha256 = "13n401i3q0xwpfgr21y47kgihi057wbh59xlsna8b8zpm973qny1";
2015-09-20 23:38:40 +02:00
};
2017-02-02 18:54:10 +01:00
nativeBuildInputs = [ autoreconfHook ];
2015-09-20 23:38:40 +02:00
meta = {
2017-02-02 18:54:10 +01:00
description = "A TCP port redirector for UNIX";
homepage = "https://github.com/troglobit/redir";
2021-01-15 10:19:50 +01:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ ];
2021-03-19 07:20:05 +01:00
platforms = lib.platforms.unix;
2015-09-20 23:38:40 +02:00
};
}