Commit c06d108c authored by Zhong Jianxin's avatar Zhong Jianxin
Browse files

SDL_gpu: Format using nixfmt-rfc-style

parent 14e770ee
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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;
  };
})