Turned two more meta.maintainers into lists
This commit is contained in:
parent
bb9e9cc3f8
commit
21c73b63b8
@ -20,12 +20,12 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "C++ bindings for the GStreamer streaming multimedia library";
|
description = "C++ bindings for the GStreamer streaming multimedia library";
|
||||||
homepage = http://www.gtkmm.org/;
|
homepage = http://www.gtkmm.org/;
|
||||||
license = stdenv.lib.licenses.lgpl2Plus;
|
license = licenses.lgpl2Plus;
|
||||||
maintainers = "Philip Lykke Carlsen <plcplc@gmail.com>";
|
maintainers = with maintainers; [ plcplc ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -51,15 +51,15 @@ stdenv.mkDerivation rec {
|
|||||||
mv $out/src/utils/* $out/bin
|
mv $out/src/utils/* $out/bin
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://code.google.com/p/kippo;
|
homepage = https://code.google.com/p/kippo;
|
||||||
description = "SSH Honeypot";
|
description = "SSH Honeypot";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Default port is 2222. Recommend using something like this for port redirection to default SSH port:
|
Default port is 2222. Recommend using something like this for port redirection to default SSH port:
|
||||||
networking.firewall.extraCommands = '''
|
networking.firewall.extraCommands = '''
|
||||||
iptables -t nat -A PREROUTING -i IN_IFACE -p tcp --dport 22 -j REDIRECT --to-port 2222''' '';
|
iptables -t nat -A PREROUTING -i IN_IFACE -p tcp --dport 22 -j REDIRECT --to-port 2222''' '';
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = pkgs.stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = pkgs.stdenv.lib.maintainers.tomberek;
|
maintainers = with maintainers; [ tomberek ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user