lol

Turned two more meta.maintainers into lists

+8 -8
+4 -4
pkgs/development/libraries/gstreamer/legacy/gstreamermm/default.nix
··· 20 20 21 21 nativeBuildInputs = [ pkgconfig ]; 22 22 23 - meta = { 23 + meta = with stdenv.lib; { 24 24 description = "C++ bindings for the GStreamer streaming multimedia library"; 25 25 homepage = http://www.gtkmm.org/; 26 - license = stdenv.lib.licenses.lgpl2Plus; 27 - maintainers = "Philip Lykke Carlsen <plcplc@gmail.com>"; 28 - platforms = stdenv.lib.platforms.unix; 26 + license = licenses.lgpl2Plus; 27 + maintainers = with maintainers; [ plcplc ]; 28 + platforms = platforms.unix; 29 29 }; 30 30 31 31 }
+4 -4
pkgs/servers/kippo/default.nix
··· 51 51 mv $out/src/utils/* $out/bin 52 52 ''; 53 53 54 - meta = { 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 - license = stdenv.lib.licenses.bsd3; 62 - platforms = pkgs.stdenv.lib.platforms.linux; 63 - maintainers = pkgs.stdenv.lib.maintainers.tomberek; 61 + license = licenses.bsd3; 62 + platforms = platforms.linux; 63 + maintainers = with maintainers; [ tomberek ]; 64 64 }; 65 65 }