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
792 B
Nix

{
fetchFromGitHub,
glib,
gobject-introspection,
meson,
ninja,
pkg-config,
lib,
stdenv,
wrapGAppsHook3,
}:
stdenv.mkDerivation rec {
pname = "cinnamon-menus";
version = "6.4.0";
src = fetchFromGitHub {
owner = "linuxmint";
repo = "cinnamon-menus";
rev = version;
hash = "sha256-ug1RSP2TBrypi0aGhF05k39koY3rGgJi0LuWyuuICd0=";
};
buildInputs = [
glib
];
nativeBuildInputs = [
meson
ninja
wrapGAppsHook3
pkg-config
gobject-introspection
];
meta = with lib; {
homepage = "https://github.com/linuxmint/cinnamon-menus";
description = "Menu system for the Cinnamon project";
license = [
licenses.gpl2
licenses.lgpl2
];
platforms = platforms.linux;
teams = [ teams.cinnamon ];
};
}