mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 04:12:44 +03:00
redir: init at 2.2.1
This commit is contained in:
parent
781b9eab61
commit
171d622fcd
23
pkgs/tools/networking/redir/default.nix
Normal file
23
pkgs/tools/networking/redir/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -2855,6 +2855,8 @@ let
|
|||||||
|
|
||||||
read-edid = callPackage ../os-specific/linux/read-edid { };
|
read-edid = callPackage ../os-specific/linux/read-edid { };
|
||||||
|
|
||||||
|
redir = callPackage ../tools/networking/redir { };
|
||||||
|
|
||||||
redmine = callPackage ../applications/version-management/redmine { };
|
redmine = callPackage ../applications/version-management/redmine { };
|
||||||
|
|
||||||
rtmpdump = callPackage ../tools/video/rtmpdump { };
|
rtmpdump = callPackage ../tools/video/rtmpdump { };
|
||||||
|
Loading…
Reference in New Issue
Block a user