maintainers: remove ciil

This commit is contained in:
Ryan Omasta
2026-05-10 04:56:27 -06:00
parent 135936480f
commit ec5e8f914c
6 changed files with 5 additions and 19 deletions
-6
View File
@@ -5038,12 +5038,6 @@
github = "cigrainger";
githubId = 3984794;
};
ciil = {
email = "simon@lackerbauer.com";
github = "ciil";
githubId = 3956062;
name = "Simon Lackerbauer";
};
cilki = {
github = "cilki";
githubId = 10459406;
@@ -54,10 +54,7 @@ stdenv.mkDerivation (finalAttrs: {
'';
homepage = "https://abella-prover.org";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [
bcdarwin
ciil
];
maintainers = [ lib.maintainers.bcdarwin ];
platforms = lib.platforms.unix;
};
})
+1 -1
View File
@@ -33,7 +33,7 @@ stdenv.mkDerivation (finalAttrs: {
mainProgram = "gnushogi";
homepage = "https://www.gnu.org/software/gnushogi/";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.ciil ];
maintainers = [ ];
platforms = lib.platforms.unix;
};
})
+1 -1
View File
@@ -51,6 +51,6 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
mainProgram = "gshogi";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.ciil ];
maintainers = [ ];
};
})
+1 -3
View File
@@ -48,9 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "Breakout clone from the LGames series";
license = with lib.licenses; [ gpl2Plus ];
mainProgram = "lbreakout2";
maintainers = with lib.maintainers; [
ciil
];
maintainers = [ ];
platforms = lib.platforms.unix;
hydraPlatforms = lib.platforms.linux; # build hangs on both Darwin platforms, needs investigation
};
+1 -4
View File
@@ -367,10 +367,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "Set of integrated tools for the R language";
homepage = "https://www.rstudio.com/";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [
ciil
tomasajt
];
maintainers = [ lib.maintainers.tomasajt ];
mainProgram = "rstudio" + lib.optionalString server "-server";
# rstudio-server on darwin is only partially supported by upstream
platforms = lib.platforms.linux ++ lib.optionals (!server) lib.platforms.darwin;