lol

warzone2100: fix meta

+5 -4
+5 -4
pkgs/games/warzone2100/default.nix
··· 33 33 34 34 postInstall = [] 35 35 ++ stdenv.lib.optional withVideos "cp ${sequences_src} $out/share/warzone2100/sequences.wz"; 36 - meta = { 36 + 37 + meta = with stdenv.lib; { 37 38 description = "A free RTS game, originally developed by Pumpkin Studios"; 38 39 longDescription = '' 39 40 Warzone 2100 is an open source real-time strategy and real-time tactics ··· 47 48 variety of possible units and tactics. 48 49 ''; 49 50 homepage = http://wz2100.net; 50 - license = [ "GPLv2+" ]; 51 - maintainers = with stdenv.lib.maintainers; [ astsmtl ]; 52 - platforms = with stdenv.lib.platforms; linux; 51 + license = licenses.gpl2Plus; 52 + maintainers = [ maintainers.astsmtl ]; 53 + platforms = platforms.linux; 53 54 }; 54 55 }