GNU bug report logs -
#51314
[PATCH 00/29] Add Octoprint (web UI for 3d printers).
Previous Next
Full log
View this message in rfc822 format
* gnu/packages/printers.scm (octoprint-pisupport): New variable.
---
gnu/packages/printers.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/printers.scm b/gnu/packages/printers.scm
index f78923966c..7367ce3a81 100644
--- a/gnu/packages/printers.scm
+++ b/gnu/packages/printers.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2018 Ludovic Courtès <ludo <at> gnu.org>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me <at> tobias.gr>
+;;; Copyright © 2021 Vinicius Monego <monego <at> posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -19,8 +20,10 @@
(define-module (gnu packages printers)
#:use-module (guix packages)
+ #:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system python)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages libusb)
#:use-module (gnu packages pkg-config)
@@ -29,6 +32,27 @@
;; This is a module for packages related to printer-like devices, but not
;; related to CUPS.
+(define-public octoprint-pisupport
+ (package
+ (name "octoprint-pisupport")
+ (version "2021.10.28")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "OctoPrint-PiSupport" version))
+ (sha256
+ (base32 "05g79hb0x8bpk4qk9h6dibl0pnlsvbnmn8jx64z4dx8hdfad3rwf"))))
+ (build-system python-build-system)
+ (arguments
+ ;; No tests in PyPI release, and circular dependency on Octoprint.
+ `(#:tests? #f))
+ (home-page "https://github.com/OctoPrint/OctoPrint-PiSupport")
+ (synopsis "Plugin to provide additional information about your Pi")
+ (description "The Pi Support plugin provides additional information about
+your Pi in the UI and also alerts you about undervoltage or overheating issues
+observed on your Pi or if your Pi is unsupported.")
+ (license license:agpl3)))
+
(define-public robocut
(package
(name "robocut")
--
2.30.2
This bug report was last modified 2 years and 170 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.