Merge pull request #147797 from romildo/upd.xfce

maintainers: add xfce team
This commit is contained in:
0x4A6F 2021-12-10 09:23:20 +01:00 committed by GitHub
commit c28b4458d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
65 changed files with 141 additions and 88 deletions

View file

@ -259,4 +259,11 @@ with lib.maintainers; {
]; ];
scope = "coqui-ai TTS (formerly Mozilla TTS) and leaf packages"; scope = "coqui-ai TTS (formerly Mozilla TTS) and leaf packages";
}; };
xfce = {
members = [
romildo
];
scope = "Maintain Xfce desktop environment and related packages.";
};
} }

View file

@ -9,7 +9,7 @@ in
{ {
meta = { meta = {
maintainers = with maintainers; [ ]; maintainers = teams.xfce.members;
}; };
imports = [ imports = [

View file

@ -62,6 +62,6 @@ python3Packages.buildPythonApplication rec {
''; '';
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.romildo ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -10,8 +10,9 @@ mkXfceDerivation {
buildInputs = [ gtk3 glib ]; buildInputs = [ gtk3 glib ];
meta = { meta = with lib; {
description = "A frontend to easily manage connections to remote filesystems"; description = "A frontend to easily manage connections to remote filesystems";
license = with lib.licenses; [ gpl2Only ]; license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, gobject-introspection, gtk3, gtksourceview4, gspell }: { lib, mkXfceDerivation, gobject-introspection, gtk3, gtksourceview4, gspell }:
mkXfceDerivation { mkXfceDerivation {
category = "apps"; category = "apps";
@ -15,7 +15,8 @@ mkXfceDerivation {
# Use the GSettings keyfile backend rather than DConf # Use the GSettings keyfile backend rather than DConf
configureFlags = [ "--enable-keyfile-settings" ]; configureFlags = [ "--enable-keyfile-settings" ];
meta = { meta = with lib; {
description = "Simple text editor for Xfce"; description = "Simple text editor for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -49,5 +49,6 @@ stdenv.mkDerivation rec {
homepage = "https://git.xfce.org/archive/orage/"; homepage = "https://git.xfce.org/archive/orage/";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, dbus, dbus-glib { lib, mkXfceDerivation, dbus, dbus-glib
, gst_all_1, gtk3, libnotify, libxfce4ui, libxfce4util , gst_all_1, gtk3, libnotify, libxfce4ui, libxfce4util
, taglib, xfconf }: , taglib, xfconf }:
@ -31,7 +31,8 @@ mkXfceDerivation {
xfconf xfconf
]; ];
meta = { meta = with lib; {
description = "Modern simple media player"; description = "Modern simple media player";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, gtk3, glib, libexif { lib, mkXfceDerivation, gtk3, glib, libexif
, libxfce4ui, libxfce4util, xfconf }: , libxfce4ui, libxfce4util, xfconf }:
mkXfceDerivation { mkXfceDerivation {
@ -12,7 +12,8 @@ mkXfceDerivation {
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0"; NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
meta = { meta = with lib; {
description = "A fast and lightweight picture-viewer for the Xfce desktop environment"; description = "A fast and lightweight picture-viewer for the Xfce desktop environment";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, docbook_xsl, exo, gtk3, libburn, libisofs, libxfce4ui, libxslt }: { lib, mkXfceDerivation, docbook_xsl, exo, gtk3, libburn, libisofs, libxfce4ui, libxslt }:
mkXfceDerivation { mkXfceDerivation {
category = "apps"; category = "apps";
@ -9,4 +9,9 @@ mkXfceDerivation {
nativeBuildInputs = [ libxslt docbook_xsl ]; nativeBuildInputs = [ libxslt docbook_xsl ];
buildInputs = [ exo gtk3 libburn libisofs libxfce4ui ]; buildInputs = [ exo gtk3 libburn libisofs libxfce4ui ];
meta = with lib; {
description = "Disc burner and project creator for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, automakeAddFlags, gtk3, libxfce4ui, libxfce4util, xfce4-panel }: { lib, mkXfceDerivation, automakeAddFlags, gtk3, libxfce4ui, libxfce4util, xfce4-panel }:
mkXfceDerivation { mkXfceDerivation {
category = "apps"; category = "apps";
@ -17,7 +17,8 @@ mkXfceDerivation {
buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel ]; buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel ];
meta = { meta = with lib; {
description = "A Dictionary Client for the Xfce desktop environment"; description = "A Dictionary Client for the Xfce desktop environment";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, glib, gtk3, libnotify, libxfce4ui, libxfce4util { lib, mkXfceDerivation, glib, gtk3, libnotify, libxfce4ui, libxfce4util
, xfce4-panel, xfconf }: , xfce4-panel, xfconf }:
mkXfceDerivation { mkXfceDerivation {
@ -14,7 +14,8 @@ mkXfceDerivation {
"--enable-dbus-start-daemon" "--enable-dbus-start-daemon"
]; ];
meta = { meta = with lib; {
description = "Simple notification daemon for Xfce"; description = "Simple notification daemon for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -23,7 +23,8 @@ in mkXfceDerivation {
--set GI_TYPELIB_PATH ${makeTypelibPath [ gtk3 libxfce4ui libxfce4util pango harfbuzz gdk-pixbuf atk ]} --set GI_TYPELIB_PATH ${makeTypelibPath [ gtk3 libxfce4ui libxfce4util pango harfbuzz gdk-pixbuf atk ]}
''; '';
meta = { meta = with lib; {
description = "Simple application to manage Xfce panel layouts"; description = "Simple application to manage Xfce panel layouts";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, exo, gtk3, libsoup, libxfce4ui, libxfce4util, xfce4-panel, glib-networking }: { lib, mkXfceDerivation, exo, gtk3, libsoup, libxfce4ui, libxfce4util, xfce4-panel, glib-networking }:
mkXfceDerivation { mkXfceDerivation {
category = "apps"; category = "apps";
@ -10,7 +10,8 @@ mkXfceDerivation {
buildInputs = [ exo gtk3 libsoup libxfce4ui libxfce4util xfce4-panel glib-networking ]; buildInputs = [ exo gtk3 libsoup libxfce4ui libxfce4util xfce4-panel glib-networking ];
meta = { meta = with lib; {
description = "Screenshot utility for the Xfce desktop"; description = "Screenshot utility for the Xfce desktop";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, exo, gtk3, libwnck, libXmu }: { lib, mkXfceDerivation, exo, gtk3, libwnck, libXmu }:
mkXfceDerivation { mkXfceDerivation {
category = "apps"; category = "apps";
@ -10,7 +10,8 @@ mkXfceDerivation {
nativeBuildInputs = [ exo ]; nativeBuildInputs = [ exo ];
buildInputs = [ gtk3 libwnck libXmu ]; buildInputs = [ gtk3 libwnck libXmu ];
meta = { meta = with lib; {
description = "Easy to use task manager for Xfce"; description = "Easy to use task manager for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, gtk3, libxfce4ui, vte, xfconf, pcre2, libxslt, docbook_xml_dtd_45, docbook_xsl }: { lib, mkXfceDerivation, gtk3, libxfce4ui, vte, xfconf, pcre2, libxslt, docbook_xml_dtd_45, docbook_xsl }:
mkXfceDerivation { mkXfceDerivation {
category = "apps"; category = "apps";
@ -11,7 +11,8 @@ mkXfceDerivation {
buildInputs = [ gtk3 libxfce4ui vte xfconf pcre2 ]; buildInputs = [ gtk3 libxfce4ui vte xfconf pcre2 ];
meta = { meta = with lib; {
description = "A modern terminal emulator"; description = "A modern terminal emulator";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -12,6 +12,6 @@ mkXfceDerivation {
meta = with lib; { meta = with lib; {
description = "A volume keys control daemon for Xfce using pulseaudio"; description = "A volume keys control daemon for Xfce using pulseaudio";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = [ maintainers.abbradar ]; maintainers = with maintainers; [ abbradar ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,5 @@
{ mkXfceDerivation { lib
, mkXfceDerivation
, clutter , clutter
, libXcomposite , libXcomposite
, libXinerama , libXinerama
@ -39,7 +40,8 @@ mkXfceDerivation {
xfconf xfconf
]; ];
meta = { meta = with lib; {
description = "Gnome shell like dashboard"; description = "Gnome shell like dashboard";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -39,6 +39,6 @@ stdenv.mkDerivation rec {
description = "Icons for Xfce"; description = "Icons for Xfce";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.eelco ]; maintainers = with maintainers; [ eelco ] ++ teams.xfce.members;
}; };
} }

View file

@ -24,6 +24,6 @@ stdenv.mkDerivation rec {
description = "Themes for Xfce"; description = "Themes for Xfce";
license = licenses.gpl3Only; license = licenses.gpl3Only;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.volth ]; maintainers = with maintainers; [ volth ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, docbook_xsl, glib, libxslt, gtk3 { lib, mkXfceDerivation, docbook_xsl, glib, libxslt, gtk3
, libxfce4ui, libxfce4util, perl }: , libxfce4ui, libxfce4util, perl }:
mkXfceDerivation { mkXfceDerivation {
@ -25,7 +25,8 @@ mkXfceDerivation {
# Workaround https://bugzilla.xfce.org/show_bug.cgi?id=15825 # Workaround https://bugzilla.xfce.org/show_bug.cgi?id=15825
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0"; NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
meta = { meta = with lib; {
description = "Application library for Xfce"; description = "Application library for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -11,8 +11,9 @@ mkXfceDerivation {
buildInputs = [ gtk3 libxfce4ui libxfce4util ]; buildInputs = [ gtk3 libxfce4ui libxfce4util ];
meta = { meta = with lib; {
description = "Xfce menu support library"; description = "Xfce menu support library";
license = with lib.licenses; [ lgpl2Only fdl11Only ]; license = with licenses; [ lgpl2Only fdl11Only ];
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -19,5 +19,6 @@ mkXfceDerivation {
meta = with lib; { meta = with lib; {
description = "Widgets library for Xfce"; description = "Widgets library for Xfce";
license = with licenses; [ lgpl2Plus lgpl21Plus ]; license = with licenses; [ lgpl2Plus lgpl21Plus ];
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -12,5 +12,6 @@ mkXfceDerivation {
meta = with lib; { meta = with lib; {
description = "Extension library for Xfce"; description = "Extension library for Xfce";
license = licenses.lgpl2Plus; license = licenses.lgpl2Plus;
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, exo, gtk3, libgudev, libxfce4ui, libxfce4util, xfconf }: { lib, mkXfceDerivation, exo, gtk3, libgudev, libxfce4ui, libxfce4util, xfconf }:
mkXfceDerivation { mkXfceDerivation {
category = "xfce"; category = "xfce";
@ -11,7 +11,8 @@ mkXfceDerivation {
odd-unstable = false; odd-unstable = false;
meta = { meta = with lib; {
description = "Thunar extension for automatic management of removable drives and media"; description = "Thunar extension for automatic management of removable drives and media";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -58,8 +58,9 @@ let unwrapped = mkXfceDerivation {
sed -i -e 's|thunar_dialogs_show_insecure_program (parent, _(".*"), file, exec)|1|' thunar/thunar-file.c sed -i -e 's|thunar_dialogs_show_insecure_program (parent, _(".*"), file, exec)|1|' thunar/thunar-file.c
''; '';
meta = { meta = with lib; {
description = "Xfce file manager"; description = "Xfce file manager";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
}; };

View file

@ -1,4 +1,4 @@
{ makeWrapper, symlinkJoin, thunar, thunarPlugins, lib }: { lib, makeWrapper, symlinkJoin, thunar, thunarPlugins }:
symlinkJoin { symlinkJoin {
name = "thunar-with-plugins-${thunar.version}"; name = "thunar-with-plugins-${thunar.version}";

View file

@ -1,4 +1,5 @@
{ mkXfceDerivation { lib
, mkXfceDerivation
, ffmpegthumbnailer , ffmpegthumbnailer
, gdk-pixbuf , gdk-pixbuf
, glib , glib
@ -32,7 +33,8 @@ mkXfceDerivation {
wrapProgram $out/lib/tumbler-1/tumblerd "''${gappsWrapperArgs[@]}" wrapProgram $out/lib/tumbler-1/tumblerd "''${gappsWrapperArgs[@]}"
''; '';
meta = { meta = with lib; {
description = "A D-Bus thumbnailer service"; description = "A D-Bus thumbnailer service";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, exo, garcon, gtk3, libxfce4util, libxfce4ui, xfconf }: { lib, mkXfceDerivation, exo, garcon, gtk3, libxfce4util, libxfce4ui, xfconf }:
mkXfceDerivation { mkXfceDerivation {
category = "xfce"; category = "xfce";
@ -10,7 +10,8 @@ mkXfceDerivation {
nativeBuildInputs = [ exo ]; nativeBuildInputs = [ exo ];
buildInputs = [ garcon gtk3 libxfce4ui libxfce4util xfconf ]; buildInputs = [ garcon gtk3 libxfce4ui libxfce4util xfconf ];
meta = { meta = with lib; {
description = "Appfinder for the Xfce4 Desktop Environment"; description = "Appfinder for the Xfce4 Desktop Environment";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,5 @@
{ mkXfceDerivation { lib
, mkXfceDerivation
, autoreconfHook , autoreconfHook
, libxslt , libxslt
, docbook_xsl , docbook_xsl
@ -34,7 +35,8 @@ mkXfceDerivation {
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
meta = { meta = with lib; {
description = "Autoconf macros and scripts to augment app build systems"; description = "Autoconf macros and scripts to augment app build systems";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,5 @@
{ mkXfceDerivation { lib
, mkXfceDerivation
, exo , exo
, garcon , garcon
, glib , glib
@ -51,7 +52,8 @@ mkXfceDerivation {
# Workaround https://bugzilla.xfce.org/show_bug.cgi?id=15825 # Workaround https://bugzilla.xfce.org/show_bug.cgi?id=15825
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0"; NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
meta = { meta = with lib; {
description = "Panel for the Xfce desktop environment"; description = "Panel for the Xfce desktop environment";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, automakeAddFlags, exo, gtk3, libnotify { lib, mkXfceDerivation, automakeAddFlags, exo, gtk3, libnotify
, libxfce4ui, libxfce4util, upower, xfconf, xfce4-panel }: , libxfce4ui, libxfce4util, upower, xfconf, xfce4-panel }:
mkXfceDerivation { mkXfceDerivation {
@ -17,7 +17,8 @@ mkXfceDerivation {
automakeAddFlags settings/Makefile.am xfce4_power_manager_settings_CFLAGS GIO_CFLAGS automakeAddFlags settings/Makefile.am xfce4_power_manager_settings_CFLAGS GIO_CFLAGS
''; '';
meta = { meta = with lib; {
description = "A power manager for the Xfce Desktop Environment"; description = "A power manager for the Xfce Desktop Environment";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, polkit, exo, libxfce4util, libxfce4ui, xfconf, iceauth, gtk3, glib, libwnck, xfce4-session }: { lib, mkXfceDerivation, polkit, exo, libxfce4util, libxfce4ui, xfconf, iceauth, gtk3, glib, libwnck, xfce4-session }:
mkXfceDerivation { mkXfceDerivation {
category = "xfce"; category = "xfce";
@ -16,7 +16,8 @@ mkXfceDerivation {
passthru.xinitrc = "${xfce4-session}/etc/xdg/xfce4/xinitrc"; passthru.xinitrc = "${xfce4-session}/etc/xdg/xfce4/xinitrc";
meta = { meta = with lib; {
description = "Session manager for Xfce"; description = "Session manager for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, exo, garcon, gtk3, glib { lib, mkXfceDerivation, exo, garcon, gtk3, glib
, libnotify, libxfce4ui, libxfce4util, libxklavier , libnotify, libxfce4ui, libxfce4util, libxklavier
, upower, xfconf, xf86inputlibinput }: , upower, xfconf, xf86inputlibinput }:
@ -34,7 +34,8 @@ mkXfceDerivation {
"--enable-sound-settings" "--enable-sound-settings"
]; ];
meta = { meta = with lib; {
description = "Settings manager for Xfce"; description = "Settings manager for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, libxfce4util, gobject-introspection, vala }: { lib, mkXfceDerivation, libxfce4util, gobject-introspection, vala }:
mkXfceDerivation { mkXfceDerivation {
category = "xfce"; category = "xfce";
@ -11,7 +11,8 @@ mkXfceDerivation {
buildInputs = [ libxfce4util ]; buildInputs = [ libxfce4util ];
meta = { meta = with lib; {
description = "Simple client-server configuration storage and query system for Xfce"; description = "Simple client-server configuration storage and query system for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, exo, gtk3, libxfce4ui, libxfce4util, libwnck, xfconf, libnotify, garcon, thunar }: { lib, mkXfceDerivation, exo, gtk3, libxfce4ui, libxfce4util, libwnck, xfconf, libnotify, garcon, thunar }:
mkXfceDerivation { mkXfceDerivation {
category = "xfce"; category = "xfce";
@ -19,7 +19,8 @@ mkXfceDerivation {
thunar thunar
]; ];
meta = { meta = with lib; {
description = "Xfce's desktop manager"; description = "Xfce's desktop manager";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, exo, librsvg, dbus-glib, libepoxy, gtk3, libXdamage { lib, mkXfceDerivation, exo, librsvg, dbus-glib, libepoxy, gtk3, libXdamage
, libstartup_notification, libxfce4ui, libxfce4util, libwnck , libstartup_notification, libxfce4ui, libxfce4util, libwnck
, libXpresent, xfconf }: , libXpresent, xfconf }:
@ -24,7 +24,8 @@ mkXfceDerivation {
xfconf xfconf
]; ];
meta = { meta = with lib; {
description = "Window manager for Xfce"; description = "Window manager for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }: { lib, mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
mkXfceDerivation { mkXfceDerivation {
category = "panel-plugins"; category = "panel-plugins";
@ -10,7 +10,8 @@ mkXfceDerivation {
buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ]; buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ];
meta = { meta = with lib; {
description = "Battery plugin for Xfce panel"; description = "Battery plugin for Xfce panel";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, libXtst, libxfce4ui, xfce4-panel, xfconf }: { lib, mkXfceDerivation, libXtst, libxfce4ui, xfce4-panel, xfconf }:
mkXfceDerivation { mkXfceDerivation {
category = "panel-plugins"; category = "panel-plugins";
@ -8,7 +8,8 @@ mkXfceDerivation {
buildInputs = [ libXtst libxfce4ui xfce4-panel xfconf ]; buildInputs = [ libXtst libxfce4ui xfce4-panel xfconf ];
meta = { meta = with lib; {
description = "Clipboard manager for Xfce panel"; description = "Clipboard manager for Xfce panel";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }: { lib, mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
mkXfceDerivation { mkXfceDerivation {
category = "panel-plugins"; category = "panel-plugins";
@ -8,7 +8,8 @@ mkXfceDerivation {
buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ]; buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ];
meta = { meta = with lib; {
description = "CPU Freq load plugin for Xfce panel"; description = "CPU Freq load plugin for Xfce panel";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -56,6 +56,6 @@ in stdenv.mkDerivation rec {
description = "CPU graph show for Xfce panel"; description = "CPU graph show for Xfce panel";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -26,6 +26,6 @@ mkXfceDerivation {
meta = with lib; { meta = with lib; {
description = "Shows the date and time in the panel, and a calendar appears when you left-click on it"; description = "Shows the date and time in the panel, and a calendar appears when you left-click on it";
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -64,6 +64,6 @@ stdenv.mkDerivation rec {
description = "Plugins to embed DockbarX into xfce4-panel"; description = "Plugins to embed DockbarX into xfce4-panel";
license = licenses.mit; license = licenses.mit;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.romildo ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -45,6 +45,6 @@ in stdenv.mkDerivation rec {
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
broken = true; # unmaintained plugin; no longer compatible with xfce 4.16 broken = true; # unmaintained plugin; no longer compatible with xfce 4.16
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -46,6 +46,6 @@ in stdenv.mkDerivation rec {
description = "Rolling eyes (following mouse pointer) plugin for the Xfce panel"; description = "Rolling eyes (following mouse pointer) plugin for the Xfce panel";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -46,6 +46,6 @@ in stdenv.mkDerivation rec {
description = "Filesystem usage monitor plugin for the Xfce panel"; description = "Filesystem usage monitor plugin for the Xfce panel";
license = licenses.bsd2; license = licenses.bsd2;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -44,6 +44,6 @@ in stdenv.mkDerivation rec {
description = "Generic monitor plugin for the Xfce panel"; description = "Generic monitor plugin for the Xfce panel";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Only; license = licenses.gpl3Only;
platforms = platforms.unix; platforms = platforms.unix;
broken = true; # unmaintained plugin; no longer compatible with xfce 4.16 broken = true; # unmaintained plugin; no longer compatible with xfce 4.16
maintainers = [ maintainers.romildo ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -41,6 +41,6 @@ stdenv.mkDerivation rec {
description = "Workspace switcher plugin for xfce4-panel which can be used for the i3 window manager"; description = "Workspace switcher plugin for xfce4-panel which can be used for the i3 window manager";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = [ maintainers.berbiche ]; maintainers = with maintainers; [ berbiche ] ++ teams.xfce.members;
}; };
} }

View file

@ -38,6 +38,6 @@ stdenv.mkDerivation rec {
description = "Mail watcher plugin for Xfce panel"; description = "Mail watcher plugin for Xfce panel";
license = licenses.gpl2Only; license = licenses.gpl2Only;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -38,6 +38,6 @@ stdenv.mkDerivation rec {
description = "MPD plugin for Xfce panel"; description = "MPD plugin for Xfce panel";
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.bsd2; license = licenses.bsd2;
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -38,6 +38,6 @@ stdenv.mkDerivation rec {
description = "Plugin which integrates titlebar and window controls into the xfce4-panel"; description = "Plugin which integrates titlebar and window controls into the xfce4-panel";
license = licenses.mit; license = licenses.mit;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.volth ]; maintainers = with maintainers; [ volth ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }: { lib, mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
mkXfceDerivation { mkXfceDerivation {
category = "panel-plugins"; category = "panel-plugins";
@ -10,7 +10,8 @@ mkXfceDerivation {
buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ]; buildInputs = [ gtk3 libxfce4ui libxfce4util xfce4-panel xfconf ];
meta = { meta = with lib; {
description = "Internet load speed plugin for Xfce4 panel"; description = "Internet load speed plugin for Xfce4 panel";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -42,6 +42,6 @@ in stdenv.mkDerivation rec {
description = "Sticky notes plugin for Xfce panel"; description = "Sticky notes plugin for Xfce panel";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,5 @@
{ mkXfceDerivation { lib
, mkXfceDerivation
, automakeAddFlags , automakeAddFlags
, dbus-glib , dbus-glib
, dbus , dbus
@ -43,7 +44,8 @@ mkXfceDerivation {
xfconf xfconf
]; ];
meta = { meta = with lib; {
description = "Adjust the audio volume of the PulseAudio sound system"; description = "Adjust the audio volume of the PulseAudio sound system";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -49,6 +49,6 @@ stdenv.mkDerivation rec {
description = "A panel plug-in for different sensors using acpi, lm_sensors and hddtemp"; description = "A panel plug-in for different sensors using acpi, lm_sensors and hddtemp";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = [ maintainers.romildo ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -42,6 +42,6 @@ in stdenv.mkDerivation rec {
description = "System load plugin for Xfce panel"; description = "System load plugin for Xfce panel";
license = licenses.bsd2; license = licenses.bsd2;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -39,6 +39,6 @@ stdenv.mkDerivation rec {
description = "Simple countdown and alarm plugin for the Xfce panel"; description = "Simple countdown and alarm plugin for the Xfce panel";
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -20,6 +20,6 @@ mkXfceDerivation {
meta = with lib; { meta = with lib; {
description = "A command-line plugin"; description = "A command-line plugin";
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -42,6 +42,6 @@ stdenv.mkDerivation rec {
description = "Weather plugin for the Xfce desktop environment"; description = "Weather plugin for the Xfce desktop environment";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = [ maintainers.romildo ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -1,4 +1,4 @@
{ mkXfceDerivation, gettext, gtk3, glib, cmake, exo, garcon, libxfce4ui, libxfce4util, xfce4-panel, xfconf }: { lib, mkXfceDerivation, gettext, gtk3, glib, cmake, exo, garcon, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
mkXfceDerivation { mkXfceDerivation {
category = "panel-plugins"; category = "panel-plugins";
@ -22,7 +22,8 @@ mkXfceDerivation {
--replace $out/bin/xfce4-panel ${xfce4-panel.out}/bin/xfce4-panel --replace $out/bin/xfce4-panel ${xfce4-panel.out}/bin/xfce4-panel
''; '';
meta = { meta = with lib; {
description = "Alternate application launcher for Xfce"; description = "Alternate application launcher for Xfce";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -45,6 +45,6 @@ stdenv.mkDerivation rec {
description = "Xfce plugins which allows to put the maximized window title and buttons on the panel"; description = "Xfce plugins which allows to put the maximized window title and buttons on the panel";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = [ maintainers.volth ]; maintainers = with maintainers; [ volth ] ++ teams.xfce.members;
}; };
} }

View file

@ -32,6 +32,6 @@ mkXfceDerivation {
meta = with lib; { meta = with lib; {
description = "Allows you to setup and use multiple keyboard layouts"; description = "Allows you to setup and use multiple keyboard layouts";
maintainers = [ ]; maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -33,5 +33,6 @@ mkXfceDerivation {
meta = with lib; { meta = with lib; {
description = "Thunar plugin providing file context menus for archives"; description = "Thunar plugin providing file context menus for archives";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -41,5 +41,6 @@ stdenv.mkDerivation rec {
description = "A plugin that adds context-menu items for Dropbox to Thunar"; description = "A plugin that adds context-menu items for Dropbox to Thunar";
license = licenses.gpl3Only; license = licenses.gpl3Only;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ ] ++ teams.xfce.members;
}; };
} }

View file

@ -32,6 +32,6 @@ mkXfceDerivation {
meta = with lib; { meta = with lib; {
description = "Thunar plugin providing tagging and renaming features for media files"; description = "Thunar plugin providing tagging and renaming features for media files";
maintainers = with maintainers; [ ncfavier ]; maintainers = with maintainers; [ ncfavier ] ++ teams.xfce.members;
}; };
} }