about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorAlex Whitt <alex.joseph.whitt@gmail.com>2020-02-13 15:58:50 -0500
committerAlex Whitt <alex.joseph.whitt@gmail.com>2020-02-13 15:58:50 -0500
commit61a637aa6467ae7e128b76de13c247b6eb806c19 (patch)
tree2f54ebe2d928e6220b1852f3f2f8ec0334c256c7 /pkgs/applications/misc
parent37e6afd799e406f263653946ec21cb8462007271 (diff)
downloadnixlib-61a637aa6467ae7e128b76de13c247b6eb806c19.tar
nixlib-61a637aa6467ae7e128b76de13c247b6eb806c19.tar.gz
nixlib-61a637aa6467ae7e128b76de13c247b6eb806c19.tar.bz2
nixlib-61a637aa6467ae7e128b76de13c247b6eb806c19.tar.lz
nixlib-61a637aa6467ae7e128b76de13c247b6eb806c19.tar.xz
nixlib-61a637aa6467ae7e128b76de13c247b6eb806c19.tar.zst
nixlib-61a637aa6467ae7e128b76de13c247b6eb806c19.zip
Octoprint-SimpleEmergencyStop: init at 0.2.5
Diffstat (limited to 'pkgs/applications/misc')
-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 2d70fe39026e..10c4f2f84480 100644
--- a/pkgs/applications/misc/octoprint/plugins.nix
+++ b/pkgs/applications/misc/octoprint/plugins.nix
@@ -231,6 +231,25 @@ let
         maintainers = with maintainers; [ WhittlesJr ];
       };
     };
+
+    simpleemergencystop = buildPlugin rec {
+      pname = "SimpleEmergencyStop";
+      version = "0.2.5";
+
+      src = fetchFromGitHub {
+        owner = "Sebclem";
+        repo = "OctoPrint-${pname}";
+        rev = version;
+        sha256 = "10wadv09wv2h96igvq3byw9hz1si82n3c7v5y0ii3j7hm2d06y8p";
+      };
+
+      meta = with stdenv.lib; {
+        description = "A simple plugin that add an emergency stop buton on NavBar of OctoPrint";
+        homepage = "https://github.com/ieatacid/OctoPrint-GcodeEditor";
+        license = licenses.agpl3;
+        maintainers = with maintainers; [ WhittlesJr ];
+      };
+    };
   };
 
 in self