about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2024-04-30 08:05:54 -0300
committerGitHub <noreply@github.com>2024-04-30 08:05:54 -0300
commitc6e33d37565dce8585783f759951a5b300d79601 (patch)
treef92e34e2a7ab84d504fdba6903aff313c3ab00f7 /pkgs/games
parentf8e4bff4a9aac6834680eadee109334a898a7f52 (diff)
freeciv: remove nested with from meta
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/freeciv/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/games/freeciv/default.nix b/pkgs/games/freeciv/default.nix
index ec99ecf64be0b..5b668026f6da4 100644
--- a/pkgs/games/freeciv/default.nix
+++ b/pkgs/games/freeciv/default.nix
@@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  meta = with lib; {
+  meta = {
     description = "Multiplayer (or single player), turn-based strategy game";
     longDescription = ''
       Freeciv is a Free and Open Source empire-building strategy game
@@ -79,10 +79,10 @@ stdenv.mkDerivation rec {
       to the space age...
     '';
     homepage = "http://www.freeciv.org"; # http only
-    license = licenses.gpl2;
-    maintainers = with maintainers; [ pierron ];
-    platforms = platforms.unix;
-    hydraPlatforms = platforms.linux; # sdl-config times out on darwin
+    license = lib.licenses.gpl2;
+    maintainers = with lib.maintainers; [ pierron ];
+    platforms = lib.platforms.unix;
+    hydraPlatforms = lib.platforms.linux; # sdl-config times out on darwin
     broken = qtClient && stdenv.isDarwin; # Missing Qt5 development files
   };
 }