Unverified Commit 455b915b authored by Federico Damián Schonborn's avatar Federico Damián Schonborn
Browse files

maintainers: Add federicoschonborn back again

parent c75037bb
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -6276,6 +6276,16 @@
    githubId = 541748;
    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 = {
    email = "fedx-sudo@pm.me";
    github = "FedX-sudo";
+1 −0
Original line number Diff line number Diff line
@@ -99,6 +99,7 @@ with lib.maintainers; {
  budgie = {
    members = [
      bobby285271
      federicoschonborn
    ];
    scope = "Maintain Budgie desktop environment";
    shortName = "Budgie";
+2 −0
Original line number Diff line number Diff line
@@ -44,6 +44,8 @@ let
    enableSshSocket = config.services.openssh.startWhenNeeded;
  };
in {
  meta.maintainers = lib.teams.budgie.members;

  options = {
    services.xserver.desktopManager.budgie = {
      enable = mkEnableOption (mdDoc "the Budgie desktop");
+4 −4
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
    "-Dvapi=false"
  ];

  meta = with lib; {
  meta = {
    description = "An implementation of the KDE Connect protocol, built on GNOME platform libraries";
    longDescription = ''
      Note that you have to open firewall ports for other devices
@@ -81,8 +81,8 @@ stdenv.mkDerivation rec {
    '';
    homepage = "https://valent.andyholmes.ca";
    changelog = "https://github.com/andyholmes/valent/blob/${src.rev}/CHANGELOG.md";
    license = with licenses; [ gpl3Plus cc0 cc-by-sa-30 ];
    maintainers = with maintainers; [ aleksana ];
    platforms = platforms.linux;
    license = with lib.licenses; [ gpl3Plus cc0 cc-by-sa-30 ];
    maintainers = with lib.maintainers; [ aleksana federicoschonborn ];
    platforms = lib.platforms.linux;
  };
}
+4 −4
Original line number Diff line number Diff line
@@ -47,12 +47,12 @@ stdenv.mkDerivation (finalAttrs: {
      --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";
    homepage = "https://gitlab.freedesktop.org/serebit/waycheck";
    license = licenses.asl20;
    maintainers = with maintainers; [ julienmalka ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ julienmalka federicoschonborn ];
    mainProgram = "waycheck";
    platforms = platforms.linux;
    platforms = lib.platforms.linux;
  };
})
Loading