summary refs log tree commit diff
diff options
context:
space:
mode:
authorEthan Edwards <ethan@ethancedwards.com>2021-04-14 16:10:20 -0400
committerEthan Edwards <ethan@ethancedwards.com>2021-04-14 16:28:57 -0400
commitba656985fb5777b4ee9f22f79d9a21e3c9ad3d8a (patch)
tree32194a5da6de8fde8bbde5e7d74c83143f036482
parent24dc4599cb095741f26ac5744368373f28b7283f (diff)
downloadnixpkgs-ba656985fb5777b4ee9f22f79d9a21e3c9ad3d8a.tar
nixpkgs-ba656985fb5777b4ee9f22f79d9a21e3c9ad3d8a.tar.gz
nixpkgs-ba656985fb5777b4ee9f22f79d9a21e3c9ad3d8a.tar.bz2
nixpkgs-ba656985fb5777b4ee9f22f79d9a21e3c9ad3d8a.tar.lz
nixpkgs-ba656985fb5777b4ee9f22f79d9a21e3c9ad3d8a.tar.xz
nixpkgs-ba656985fb5777b4ee9f22f79d9a21e3c9ad3d8a.tar.zst
nixpkgs-ba656985fb5777b4ee9f22f79d9a21e3c9ad3d8a.zip
godot: clean up code
-rw-r--r--pkgs/development/tools/godot/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/godot/default.nix b/pkgs/development/tools/godot/default.nix
index 217717d3e7d..d5eb7a9b0e0 100644
--- a/pkgs/development/tools/godot/default.nix
+++ b/pkgs/development/tools/godot/default.nix
@@ -58,11 +58,11 @@ in stdenv.mkDerivation rec {
       --replace "Exec=godot" "Exec=$out/bin/godot"
   '';
 
-  meta = {
+  meta = with lib; {
     homepage    = "https://godotengine.org";
     description = "Free and Open Source 2D and 3D game engine";
-    license     = lib.licenses.mit;
+    license     = licenses.mit;
     platforms   = [ "i686-linux" "x86_64-linux" ];
-    maintainers = [ lib.maintainers.twey ];
+    maintainers = with maintainers; [ twey ];
   };
 }