summary refs log tree commit diff
path: root/pkgs/games/warzone2100/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-09-04 21:04:11 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-09-04 21:04:11 +0200
commitc4a35d8cf9548344cedf259363eef4332fd2e072 (patch)
tree1cfa52709c1672423e4c81ac05cfa394d0d094d8 /pkgs/games/warzone2100/default.nix
parent4a2b6a63b61890aab22a6cf6e4dbafb5be814957 (diff)
downloadnixpkgs-c4a35d8cf9548344cedf259363eef4332fd2e072.tar
nixpkgs-c4a35d8cf9548344cedf259363eef4332fd2e072.tar.gz
nixpkgs-c4a35d8cf9548344cedf259363eef4332fd2e072.tar.bz2
nixpkgs-c4a35d8cf9548344cedf259363eef4332fd2e072.tar.lz
nixpkgs-c4a35d8cf9548344cedf259363eef4332fd2e072.tar.xz
nixpkgs-c4a35d8cf9548344cedf259363eef4332fd2e072.tar.zst
nixpkgs-c4a35d8cf9548344cedf259363eef4332fd2e072.zip
warzone2100: fix meta
Diffstat (limited to 'pkgs/games/warzone2100/default.nix')
-rw-r--r--pkgs/games/warzone2100/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/games/warzone2100/default.nix b/pkgs/games/warzone2100/default.nix
index 0db90e95cc9..248b58a4e1a 100644
--- a/pkgs/games/warzone2100/default.nix
+++ b/pkgs/games/warzone2100/default.nix
@@ -33,7 +33,8 @@ stdenv.mkDerivation rec {
 
   postInstall = []
     ++ stdenv.lib.optional withVideos "cp ${sequences_src} $out/share/warzone2100/sequences.wz";
-  meta = {
+
+  meta = with stdenv.lib; {
     description = "A free RTS game, originally developed by Pumpkin Studios";
     longDescription = ''
         Warzone 2100 is an open source real-time strategy and real-time tactics
@@ -47,8 +48,8 @@ stdenv.mkDerivation rec {
       variety of possible units and tactics. 
     '';
     homepage = http://wz2100.net;
-    license = [ "GPLv2+" ];
-    maintainers = with stdenv.lib.maintainers; [ astsmtl ];
-    platforms = with stdenv.lib.platforms; linux;
+    license = licenses.gpl2Plus;
+    maintainers = [ maintainers.astsmtl ];
+    platforms = platforms.linux;
   };
 }