tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
Turned two more meta.maintainers into lists
Pascal Wittmann
11 years ago
21c73b63
bb9e9cc3
+8
-8
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
gstreamer
legacy
gstreamermm
default.nix
servers
kippo
default.nix
+4
-4
pkgs/development/libraries/gstreamer/legacy/gstreamermm/default.nix
reviewed
···
20
20
21
21
nativeBuildInputs = [ pkgconfig ];
22
22
23
23
-
meta = {
23
23
+
meta = with stdenv.lib; {
24
24
description = "C++ bindings for the GStreamer streaming multimedia library";
25
25
homepage = http://www.gtkmm.org/;
26
26
-
license = stdenv.lib.licenses.lgpl2Plus;
27
27
-
maintainers = "Philip Lykke Carlsen <plcplc@gmail.com>";
28
28
-
platforms = stdenv.lib.platforms.unix;
26
26
+
license = licenses.lgpl2Plus;
27
27
+
maintainers = with maintainers; [ plcplc ];
28
28
+
platforms = platforms.unix;
29
29
};
30
30
31
31
}
+4
-4
pkgs/servers/kippo/default.nix
reviewed
···
51
51
mv $out/src/utils/* $out/bin
52
52
'';
53
53
54
54
-
meta = {
54
54
+
meta = with stdenv.lib; {
55
55
homepage = https://code.google.com/p/kippo;
56
56
description = "SSH Honeypot";
57
57
longDescription = ''
58
58
Default port is 2222. Recommend using something like this for port redirection to default SSH port:
59
59
networking.firewall.extraCommands = '''
60
60
iptables -t nat -A PREROUTING -i IN_IFACE -p tcp --dport 22 -j REDIRECT --to-port 2222''' '';
61
61
-
license = stdenv.lib.licenses.bsd3;
62
62
-
platforms = pkgs.stdenv.lib.platforms.linux;
63
63
-
maintainers = pkgs.stdenv.lib.maintainers.tomberek;
61
61
+
license = licenses.bsd3;
62
62
+
platforms = platforms.linux;
63
63
+
maintainers = with maintainers; [ tomberek ];
64
64
};
65
65
}