godot: clean up code

This commit is contained in:
Ethan Edwards 2021-04-14 16:10:20 -04:00
parent 24dc4599cb
commit ba656985fb
No known key found for this signature in database
GPG Key ID: F1AD8EEE1366610B

View File

@ -58,11 +58,11 @@ in stdenv.mkDerivation rec {
--replace "Exec=godot" "Exec=$out/bin/godot" --replace "Exec=godot" "Exec=$out/bin/godot"
''; '';
meta = { meta = with lib; {
homepage = "https://godotengine.org"; homepage = "https://godotengine.org";
description = "Free and Open Source 2D and 3D game engine"; description = "Free and Open Source 2D and 3D game engine";
license = lib.licenses.mit; license = licenses.mit;
platforms = [ "i686-linux" "x86_64-linux" ]; platforms = [ "i686-linux" "x86_64-linux" ];
maintainers = [ lib.maintainers.twey ]; maintainers = with maintainers; [ twey ];
}; };
} }