summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2020-10-07 20:57:20 -0700
committerBernardo Meurer <bernardo@meurer.org>2020-10-08 22:13:02 -0700
commit223e028ca93432088e8eaf01c8eaed3469790e67 (patch)
treec84bcfc09cf4adb2c6e7ac8d1805c213ccb4dbfc /pkgs/applications
parent56c9f66a4281ceade3dee035388dce58b4442989 (diff)
octoprint.python.pkgs.octoklipper: init at 0.3.2
Diffstat (limited to 'pkgs/applications')
-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 a7c70ccf7d3f1..e8118118cc4b9 100644
--- a/pkgs/applications/misc/octoprint/plugins.nix
+++ b/pkgs/applications/misc/octoprint/plugins.nix
@@ -272,6 +272,25 @@ in {
     };
   };
 
+  octoklipper = buildPlugin rec {
+    pname = "OctoKlipper";
+    version = "0.3.2";
+
+    src = fetchFromGitHub {
+      owner = "AliceGrey";
+      repo = "OctoprintKlipperPlugin";
+      rev = version;
+      sha256 = "15yg2blbgqp2gdpsqqm8qiiznq5qaq8wss07jimkl0865vrvlz7l";
+    };
+
+    meta = with stdenv.lib; {
+      description = "A plugin for a better integration of Klipper into OctoPrint";
+      homepage = "https://github.com/AliceGrey/OctoprintKlipperPlugin";
+      license = licenses.agpl3;
+      maintainers = with maintainers; [ lovesegfault ];
+    };
+  };
+
   octoprint-dashboard = buildPlugin rec {
     pname = "OctoPrint-Dashboard";
     version = "1.13.0";