Merge pull request #11579 from mayflower/pkg/redir

redir: init at 2.2.1
This commit is contained in:
goibhniu 2015-12-12 12:04:02 +01:00
commit 5a4be85b3a
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

@ -2872,6 +2872,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 { };