leafpad: added platform information to the meta section

+4 -3
+4 -3
pkgs/applications/editors/leafpad/default.nix
··· 14 14 "--enable-chooser" 15 15 ]; 16 16 17 - meta = { 17 + meta = with stdenv.lib; { 18 18 description = "A notepad clone for GTK+ 2.0"; 19 19 homepage = http://tarot.freeshell.org/leafpad; 20 - maintainers = [ stdenv.lib.maintainers.flosse ]; 21 - license = stdenv.lib.licenses.gpl3; 20 + platforms = platforms.linux; 21 + maintainers = [ maintainers.flosse ]; 22 + license = licenses.gpl3; 22 23 }; 23 24 }