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

35 lines
528 B
Nix

{
lib,
mkXfceDerivation,
exo,
gtk3,
libgudev,
libxfce4ui,
libxfce4util,
xfconf,
}:
mkXfceDerivation {
category = "xfce";
pname = "thunar-volman";
version = "4.20.0";
buildInputs = [
exo
gtk3
libgudev
libxfce4ui
libxfce4util
xfconf
];
sha256 = "sha256-XIVs/vRwy3QJQW/U7eLBvGdzplWlhdxn3f1lyTQsmpE=";
odd-unstable = false;
meta = with lib; {
description = "Thunar extension for automatic management of removable drives and media";
teams = [ teams.xfce ];
};
}