redir: init at 2.2.1

This commit is contained in:
Robin Gloster 2015-09-20 21:38:40 +00:00 committed by Robin Gloster
parent 781b9eab61
commit 171d622fcd
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "redir-2.2.1";
src = fetchurl {
url = "http://sammy.net/~sammy/hacks/${name}.tar.gz";
sha256 = "0v0f14br00rrmd1ss644adsby4gm29sn7a2ccy7l93ik6pw099by";
};
installPhase = ''
mkdir -p $out/bin
cp redir $out/bin
'';
meta = {
description = "A port redirector";
homepage = http://sammy.net/~sammy/hacks/;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ globin ];
platforms = stdenv.lib.platforms.linux;
};
}

View File

@ -2855,6 +2855,8 @@ let
read-edid = callPackage ../os-specific/linux/read-edid { };
redir = callPackage ../tools/networking/redir { };
redmine = callPackage ../applications/version-management/redmine { };
rtmpdump = callPackage ../tools/video/rtmpdump { };