Skip to content

Commit 0af8b6e

Browse files
SDL1: get rid of nested with in meta
1 parent 4ca394d commit 0af8b6e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pkgs/by-name/sd/SDL1/package.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,12 @@ stdenv.mkDerivation (finalAttrs: {
143143

144144
enableParallelBuilding = true;
145145

146-
meta = with lib; {
146+
meta = {
147+
homepage = "http://www.libsdl.org/";
147148
description = "Cross-platform multimedia library";
149+
license = lib.licenses.lgpl21;
148150
mainProgram = "sdl-config";
149-
homepage = "http://www.libsdl.org/";
150-
maintainers = with maintainers; [ lovek323 ];
151-
platforms = platforms.unix;
152-
license = licenses.lgpl21;
151+
maintainers = lib.teams.sdl.members ++ (with lib.maintainers; [ lovek323 ]);
152+
platforms = lib.platforms.unix;
153153
};
154154
})

0 commit comments

Comments
 (0)