SDL_gpu: Format using nixfmt-rfc-style

This commit is contained in:
Zhong Jianxin 2024-11-04 19:50:26 +08:00
parent 14e770eef7
commit c06d108c27

View File

@ -37,7 +37,10 @@ stdenv.mkDerivation (finalAttrs: {
(lib.cmakeBool "SDL_gpu_BUILD_TESTS" false)
];
outputs = [ "out" "dev" ];
outputs = [
"out"
"dev"
];
strictDeps = true;
@ -45,8 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "Library for high-performance, modern 2D graphics with SDL written in C";
homepage = "https://grimfang4.github.io/sdl-gpu";
license = lib.licenses.mit;
maintainers = lib.teams.sdl.members
++ (with lib.maintainers; [ ]);
maintainers = lib.teams.sdl.members ++ (with lib.maintainers; [ ]);
inherit (SDL2.meta) platforms;
};
})