nixpkgs/pkgs/applications/video/kodi/addons/texturemaker/default.nix
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

30 lines
646 B
Nix

{
lib,
buildKodiAddon,
fetchFromGitHub,
jurialmunkey,
}:
buildKodiAddon rec {
pname = "texturemaker";
namespace = "script.texturemaker";
version = "0.2.10";
src = fetchFromGitHub {
owner = "jurialmunkey";
repo = namespace;
rev = "v${version}";
hash = "sha256-GtUDNc0qatGzgSqQdDJgZnrhI1f+SPyoG9Og+oRFxRM=";
};
propagatedBuildInputs = [
jurialmunkey
];
meta = with lib; {
homepage = "https://github.com/jurialmunkey/script.texturemaker/tree/main";
description = "Texture Maker helps skinners build gradient based textures";
license = licenses.gpl3Plus;
teams = [ teams.kodi ];
};
}