Unverified Commit 11f1ef64 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

teams/sdl: add members, adopt and drop packages (#407049)

parents 12d2900b ca86336a
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -1119,9 +1119,17 @@ with lib.maintainers;
  };

  sdl = {
    members = [ ];
    scope = "Maintain SDL libraries.";
    members = [
      evythedemon
      grimmauld
      jansol
      marcin-serwin
      pbsds
    ];
    githubTeams = [ "SDL" ];
    scope = "Maintain core SDL libraries.";
    shortName = "SDL";
    enableFeatureFreezePing = true;
  };

  sphinx = {
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "https://www.gnu.org/software/guile-sdl/";
    description = "Guile bindings for SDL";
    license = lib.licenses.gpl3Plus;
    teams = [ lib.teams.sdl ];
    maintainers = [ ];
    inherit (guile.meta) platforms;
  };
})
+1 −0
Original line number Diff line number Diff line
@@ -48,6 +48,7 @@ stdenv.mkDerivation rec {
    mainProgram = "playsound";
    platforms = platforms.unix;
    license = licenses.zlib;
    teams = [ lib.teams.sdl ];
    homepage = "https://www.icculus.org/SDL_sound/";
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ stdenv.mkDerivation {
    description = "SDL 1.2 patched with libsixel support";
    license = lib.licenses.lgpl21;
    mainProgram = "sdl-config";
    teams = [ lib.teams.sdl ];
    maintainers = [ ];
    platforms = lib.platforms.linux;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "https://sdl-stretch.sourceforge.net/";
    description = "Stretch Functions For SDL";
    license = lib.licenses.lgpl2;
    teams = [ lib.teams.sdl ];
    maintainers = [ ];
    inherit (SDL.meta) platforms;
  };
})
Loading