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

21 lines
475 B
Nix

{ lib, fetchFromGitHub }:
rec {
version = "3.10.1";
pyproject = true;
src = fetchFromGitHub {
owner = "openrazer";
repo = "openrazer";
tag = "v${version}";
hash = "sha256-igrGx7Y6ENtZatJCTAW43/0q6ZjljJ9/kU3QFli4yIU=";
};
meta = {
homepage = "https://openrazer.github.io/";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ evanjs ];
teams = [ lib.teams.lumiguide ];
platforms = lib.platforms.linux;
};
}