summary refs log tree commit diff
path: root/pkgs/development/tools/godot/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-04-15 00:15:31 +0000
committerGitHub <noreply@github.com>2021-04-15 00:15:31 +0000
commite7adc44bb8ccccd88e7041b2f90c20b9330bee3a (patch)
tree8824ea2e5c32420b152575941012ae8247db1ab7 /pkgs/development/tools/godot/default.nix
parenteb85527f6c5bbc9d2ad77d1a9d19426cec065068 (diff)
parent90a28c8ec143989c65c796a161fcfb581400fce7 (diff)
downloadnixpkgs-e7adc44bb8ccccd88e7041b2f90c20b9330bee3a.tar
nixpkgs-e7adc44bb8ccccd88e7041b2f90c20b9330bee3a.tar.gz
nixpkgs-e7adc44bb8ccccd88e7041b2f90c20b9330bee3a.tar.bz2
nixpkgs-e7adc44bb8ccccd88e7041b2f90c20b9330bee3a.tar.lz
nixpkgs-e7adc44bb8ccccd88e7041b2f90c20b9330bee3a.tar.xz
nixpkgs-e7adc44bb8ccccd88e7041b2f90c20b9330bee3a.tar.zst
nixpkgs-e7adc44bb8ccccd88e7041b2f90c20b9330bee3a.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/tools/godot/default.nix')
-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 ];
   };
 }