Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
646 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
};
}