Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
646 B
Nix
31 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 ];
|
|
};
|
|
}
|