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

29 lines
643 B
Nix

{
lib,
stdenv,
fetchurl,
httpTwoLevelsUpdater,
}:
stdenv.mkDerivation rec {
pname = "xfwm4-themes";
version = "4.10.0";
src = fetchurl {
url = "mirror://xfce/src/art/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
sha256 = "sha256-MhTV8A6XA7XoyefDKH1gbe3scoXOtNXbMy6TraZv1XU=";
};
passthru.updateScript = httpTwoLevelsUpdater {
url = "https://archive.xfce.org/src/art/${pname}";
};
meta = with lib; {
homepage = "https://www.xfce.org/";
description = "Themes for Xfce";
license = licenses.gpl3Only;
platforms = platforms.linux;
teams = [ teams.xfce ];
};
}