From f66c7667e3e2289638ae6983e6f4c2460ad9f180 Mon Sep 17 00:00:00 2001 From: Bernardo Meurer Date: Wed, 21 Oct 2020 00:00:46 -0700 Subject: [PATCH] octoprint.python.pkgs.themeify: init at 1.2.2 --- pkgs/applications/misc/octoprint/plugins.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index ef5f181c3ae..c258d8bbf3a 100644 --- a/pkgs/applications/misc/octoprint/plugins.nix +++ b/pkgs/applications/misc/octoprint/plugins.nix @@ -200,6 +200,25 @@ in { }; }; + themeify = buildPlugin rec { + pname = "Themeify"; + version = "1.2.2"; + + src = fetchFromGitHub { + owner = "Birkbjo"; + repo = "Octoprint-${pname}"; + rev = "v${version}"; + sha256 = "0j1qs6kyh947npdy7pqda25fjkqinpas3sy0qyscqlxi558lhvx2"; + }; + + meta = with stdenv.lib; { + description = "Beautiful themes for OctoPrint"; + homepage = "https://github.com/birkbjo/OctoPrint-Themeify"; + license = licenses.agpl3; + maintainers = with maintainers; [ lovesegfault ]; + }; + }; + titlestatus = buildPlugin rec { pname = "TitleStatus"; version = "0.0.5";