about summary refs log tree commit diff
path: root/pkgs/applications/misc/octoprint
diff options
context:
space:
mode:
authorJohannes Arnold <johannes.arnold@stud.uni-hannover.de>2020-09-05 11:48:56 +0200
committerJohannes Arnold <johannes.arnold@stud.uni-hannover.de>2020-09-05 11:48:56 +0200
commit4746456a64f8c0bf126dfc65e71d0796844bb84a (patch)
tree56e57bb949d4539b9fda056506546222bad47a25 /pkgs/applications/misc/octoprint
parent452e5b934846dc1b5607341df9ee0a2a249570bd (diff)
octoprint.python.pkgs.octoprint-dashboard: init at 1.13.0
Diffstat (limited to 'pkgs/applications/misc/octoprint')
-rw-r--r--pkgs/applications/misc/octoprint/plugins.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix
index a4b32d280c8ff..ddf68b6f7c381 100644
--- a/pkgs/applications/misc/octoprint/plugins.nix
+++ b/pkgs/applications/misc/octoprint/plugins.nix
@@ -271,4 +271,23 @@ in {
       maintainers = with maintainers; [ j0hax ];
     };
   };
+
+  octoprint-dashboard = buildPlugin rec {
+    pname = "OctoPrint-Dashboard";
+    version = "1.13.0";
+
+    src = fetchFromGitHub {
+      owner = "StefanCohen";
+      repo = pname;
+      rev = version;
+      sha256 = "1879l05gkkryvhxkmhr3xvd10d4m7i0cr3jk1gdcv47xwyr6q9pf";
+    };
+
+    meta = with stdenv.lib; {
+      description = "A dashboard for Octoprint";
+      homepage = "https://github.com/StefanCohen/OctoPrint-Dashboard";
+      license = licenses.agpl3;
+      maintainers = with maintainers; [ j0hax ];
+    };
+  };
 }