gnu: Add atelier.
* gnu/packages/kde-utils.scm (atelier): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
9f7040cf74
commit
19e70470d5
1 changed files with 39 additions and 0 deletions
|
@ -121,6 +121,45 @@ with support for multiple formats, including tar, gzip, bzip2, rar and zip, as
|
||||||
well as CD-ROM images.")
|
well as CD-ROM images.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public atelier
|
||||||
|
(let ((commit "93d7d440c42f1e49a4933cbbce9f68d5e4ca725a") ; no releases
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "atelier")
|
||||||
|
(version (git-version "0.1-pre" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://invent.kde.org/utilities/atelier")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"00jccpwvksyp2vr3fjxajs8d9d30rspg4zj6rnj8dai96alp303k"))))
|
||||||
|
(build-system qt-build-system)
|
||||||
|
(native-inputs (list extra-cmake-modules pkg-config))
|
||||||
|
(inputs (list ki18n
|
||||||
|
kxmlgui
|
||||||
|
kconfigwidgets
|
||||||
|
ktexteditor
|
||||||
|
libatcore
|
||||||
|
qt3d-5
|
||||||
|
qtbase-5
|
||||||
|
qtcharts
|
||||||
|
qtdeclarative-5
|
||||||
|
qtmultimedia-5
|
||||||
|
qtserialport))
|
||||||
|
(home-page "https://atelier.kde.org")
|
||||||
|
(synopsis "Desktop interface to control 3D printers powered by AtCore")
|
||||||
|
(description "Atelier provides interface to control and manage your printer.
|
||||||
|
@itemize
|
||||||
|
@item Load and see your GCode File
|
||||||
|
@item Real time graphic to monitor your bed and hotend temperatures
|
||||||
|
@item You can log everything that comes and go from your printer
|
||||||
|
@item Edit gcode file
|
||||||
|
@end itemize")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public basket
|
(define-public basket
|
||||||
(let ((commit "e23a8b3b1198d51f770523c7fb4652750810359a")
|
(let ((commit "e23a8b3b1198d51f770523c7fb4652750810359a")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Reference in a new issue