Merge pull request #297072 from FedericoSchonborn/add-federicoschonborn
maintainers: Add federicoschonborn back again
This commit is contained in:
commit
2dcadb7087
9 changed files with 30 additions and 17 deletions
|
@ -6276,6 +6276,16 @@
|
||||||
githubId = 541748;
|
githubId = 541748;
|
||||||
name = "Felipe Espinoza";
|
name = "Felipe Espinoza";
|
||||||
};
|
};
|
||||||
|
federicoschonborn = {
|
||||||
|
name = "Federico Damián Schonborn";
|
||||||
|
email = "federicoschonborn@disroot.org";
|
||||||
|
github = "FedericoSchonborn";
|
||||||
|
githubId = 62166915;
|
||||||
|
matrix = "@FedericoDSchonborn:matrix.org";
|
||||||
|
keys = [
|
||||||
|
{ fingerprint = "C43F 4052 D289 3B73 33F8 0259 E4F6 F544 DE9E 29E8"; }
|
||||||
|
];
|
||||||
|
};
|
||||||
fedx-sudo = {
|
fedx-sudo = {
|
||||||
email = "fedx-sudo@pm.me";
|
email = "fedx-sudo@pm.me";
|
||||||
github = "FedX-sudo";
|
github = "FedX-sudo";
|
||||||
|
|
|
@ -99,6 +99,7 @@ with lib.maintainers; {
|
||||||
budgie = {
|
budgie = {
|
||||||
members = [
|
members = [
|
||||||
bobby285271
|
bobby285271
|
||||||
|
federicoschonborn
|
||||||
];
|
];
|
||||||
scope = "Maintain Budgie desktop environment";
|
scope = "Maintain Budgie desktop environment";
|
||||||
shortName = "Budgie";
|
shortName = "Budgie";
|
||||||
|
|
|
@ -44,6 +44,8 @@ let
|
||||||
enableSshSocket = config.services.openssh.startWhenNeeded;
|
enableSshSocket = config.services.openssh.startWhenNeeded;
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
meta.maintainers = lib.teams.budgie.members;
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
services.xserver.desktopManager.budgie = {
|
services.xserver.desktopManager.budgie = {
|
||||||
enable = mkEnableOption (mdDoc "the Budgie desktop");
|
enable = mkEnableOption (mdDoc "the Budgie desktop");
|
||||||
|
|
|
@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
|
||||||
"-Dvapi=false"
|
"-Dvapi=false"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "An implementation of the KDE Connect protocol, built on GNOME platform libraries";
|
description = "An implementation of the KDE Connect protocol, built on GNOME platform libraries";
|
||||||
mainProgram = "valent";
|
mainProgram = "valent";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -82,8 +82,8 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
homepage = "https://valent.andyholmes.ca";
|
homepage = "https://valent.andyholmes.ca";
|
||||||
changelog = "https://github.com/andyholmes/valent/blob/${src.rev}/CHANGELOG.md";
|
changelog = "https://github.com/andyholmes/valent/blob/${src.rev}/CHANGELOG.md";
|
||||||
license = with licenses; [ gpl3Plus cc0 cc-by-sa-30 ];
|
license = with lib.licenses; [ gpl3Plus cc0 cc-by-sa-30 ];
|
||||||
maintainers = with maintainers; [ aleksana ];
|
maintainers = with lib.maintainers; [ aleksana federicoschonborn ];
|
||||||
platforms = platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
--replace "update-desktop-database -q" "update-desktop-database $out/share/applications"
|
--replace "update-desktop-database -q" "update-desktop-database $out/share/applications"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Simple GUI that displays the protocols implemented by a Wayland compositor";
|
description = "Simple GUI that displays the protocols implemented by a Wayland compositor";
|
||||||
homepage = "https://gitlab.freedesktop.org/serebit/waycheck";
|
homepage = "https://gitlab.freedesktop.org/serebit/waycheck";
|
||||||
license = licenses.asl20;
|
license = lib.licenses.asl20;
|
||||||
maintainers = with maintainers; [ julienmalka ];
|
maintainers = with lib.maintainers; [ julienmalka federicoschonborn ];
|
||||||
mainProgram = "waycheck";
|
mainProgram = "waycheck";
|
||||||
platforms = platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
@ -26,12 +26,12 @@ stdenv.mkDerivation rec {
|
||||||
extensionPortalSlug = "valent";
|
extensionPortalSlug = "valent";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "GNOME Shell integration for Valent";
|
description = "GNOME Shell integration for Valent";
|
||||||
homepage = "https://valent.andyholmes.ca/";
|
homepage = "https://valent.andyholmes.ca/";
|
||||||
changelog = "https://github.com/andyholmes/gnome-shell-extension-valent/blob/${src.rev}/CHANGELOG.md";
|
changelog = "https://github.com/andyholmes/gnome-shell-extension-valent/blob/${src.rev}/CHANGELOG.md";
|
||||||
license = licenses.gpl3Plus;
|
license = lib.licenses.gpl3Plus;
|
||||||
maintainers = [ ];
|
maintainers = with lib.maintainers; [ federicoschonborn ];
|
||||||
platforms = platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,6 @@ mkXfceDerivation {
|
||||||
meta = {
|
meta = {
|
||||||
description = "Windowing concept abstraction library for X11 and Wayland";
|
description = "Windowing concept abstraction library for X11 and Wayland";
|
||||||
license = lib.licenses.lgpl21Plus;
|
license = lib.licenses.lgpl21Plus;
|
||||||
maintainers = lib.teams.xfce.members;
|
maintainers = lib.teams.xfce.members ++ [ lib.maintainers.federicoschonborn ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,11 +19,11 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
cmake
|
cmake
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "The fastest JSON library in C";
|
description = "The fastest JSON library in C";
|
||||||
homepage = "https://github.com/ibireme/yyjson";
|
homepage = "https://github.com/ibireme/yyjson";
|
||||||
changelog = "https://github.com/ibireme/yyjson/blob/${finalAttrs.src.rev}/CHANGELOG.md";
|
changelog = "https://github.com/ibireme/yyjson/blob/${finalAttrs.src.rev}/CHANGELOG.md";
|
||||||
license = licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with lib.maintainers; [ federicoschonborn ];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
@ -151,7 +151,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
description = "Like neofetch, but much faster because written in C";
|
description = "Like neofetch, but much faster because written in C";
|
||||||
homepage = "https://github.com/fastfetch-cli/fastfetch";
|
homepage = "https://github.com/fastfetch-cli/fastfetch";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ gerg-l khaneliman ];
|
maintainers = with lib.maintainers; [ gerg-l khaneliman federicoschonborn ];
|
||||||
platforms = lib.platforms.all;
|
platforms = lib.platforms.all;
|
||||||
mainProgram = "fastfetch";
|
mainProgram = "fastfetch";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue