Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

38 lines
507 B
Nix

{
lib,
mkXfceDerivation,
docbook_xsl,
glib,
libxslt,
gtk3,
libxfce4ui,
libxfce4util,
perl,
}:
mkXfceDerivation {
category = "xfce";
pname = "exo";
version = "4.20.0";
sha256 = "sha256-mlGsFaKy96eEAYgYYqtEI4naq5ZSEe3V7nsWGAEucn0=";
nativeBuildInputs = [
libxslt
docbook_xsl
perl
];
buildInputs = [
gtk3
glib
libxfce4ui
libxfce4util
];
meta = with lib; {
description = "Application library for Xfce";
teams = [ teams.xfce ];
};
}