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

47 lines
915 B
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
gettext,
gtk3,
gobject-introspection,
libayatana-appindicator,
polkit,
mateUpdateScript,
}:
stdenv.mkDerivation rec {
pname = "mate-polkit";
version = "1.28.1";
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "NQod0KjtaiycGDz/KiHzlCmelo/MauLoyTxWXa5gSug=";
};
nativeBuildInputs = [
gobject-introspection
gettext
pkg-config
];
buildInputs = [
gtk3
libayatana-appindicator
polkit
];
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
meta = with lib; {
description = "Integrates polkit authentication for MATE desktop";
homepage = "https://mate-desktop.org";
license = [ licenses.gpl2Plus ];
platforms = platforms.unix;
teams = [ teams.mate ];
};
}