mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
30 lines
646 B
Nix
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 ];
|
|
};
|
|
}
|