summaryrefslogtreecommitdiff
path: root/pkgs/applications/video/kodi/addons/texturemaker/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/kodi/addons/texturemaker/default.nix')
-rw-r--r--pkgs/applications/video/kodi/addons/texturemaker/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/applications/video/kodi/addons/texturemaker/default.nix b/pkgs/applications/video/kodi/addons/texturemaker/default.nix
new file mode 100644
index 000000000000..bbbd3ff04553
--- /dev/null
+++ b/pkgs/applications/video/kodi/addons/texturemaker/default.nix
@@ -0,0 +1,30 @@
+{
+ 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;
+ maintainers = teams.kodi.members;
+ };
+}