From: Malte Frank Gerdes <malte.f.gerdes@gmail.com>
To: 44045@debbugs.gnu.org
Cc: Malte Frank Gerdes <malte.f.gerdes@gmail.com>
Subject: [bug#44045] [PATCH 07/10] gnu: Add cura.
Date: Sat, 17 Oct 2020 12:35:44 +0200 [thread overview]
Message-ID: <20201017103547.13769-7-malte.f.gerdes@gmail.com> (raw)
In-Reply-To: <20201017103547.13769-1-malte.f.gerdes@gmail.com>
* gnu/packages/engineering.scm (cura): New variable.
---
gnu/packages/engineering.scm | 43 ++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index a65cbb81e8..2a7dfe470f 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -3075,3 +3075,46 @@ belongs to the Cura project from Ultimaker.")
python bindings. It belongs to the Cura project from Ultimaker.")
(license license:lgpl3))))
+(define-public cura
+ (package
+ (name "cura")
+ (version "4.7.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Ultimaker/Cura")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19an168iad3cb5w8i71c0wbr79qnz5qnpxqx1j6dgh64qz6ffn2r"))))
+ (build-system cmake-build-system)
+ (native-inputs
+ `(("mypy" ,python-mypy)
+ ("pytest" ,python-pytest)
+ ("certifi" ,python-certifi)
+ ("requests" ,python-requests)))
+ (inputs
+ `(("uranium" ,uranium)
+ ("cura-engine" ,cura-engine)
+ ("serial" ,python-pyserial)
+ ("savitar" ,libSavitar)
+ ("charon" ,libCharon)
+ ("sip" ,python-sip)))
+ (arguments
+ `(#:tests? #false
+ #:configure-flags '("-DURANIUM_SCRIPTS_DIR=")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'link-to-CuraEngine
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (symlink (string-append (assoc-ref inputs "cura-engine")
+ "/bin/CuraEngine")
+ (string-append (assoc-ref outputs "out")
+ "/bin/CuraEngine"))
+ #true)))))
+ (home-page "https://github.com/Ultimaker/Cura")
+ (synopsis "Cura Slicer")
+ (description "Cura is a slicing software from Ultimaker. A @emph{Slicer}
+generates G-Code for 3D printers.")
+ (license license:lgpl3)))
--
2.28.0
next prev parent reply other threads:[~2020-10-17 10:37 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-17 10:32 [bug#44045] [PATCH 00/10] WIP Ultimaker Cura Malte Frank Gerdes
2020-10-17 10:35 ` [bug#44045] [PATCH 01/10] gnu: Add libArcus Malte Frank Gerdes
2020-10-17 10:35 ` [bug#44045] [PATCH 02/10] gnu: Add cura-engine Malte Frank Gerdes
2020-10-17 10:35 ` [bug#44045] [PATCH 03/10] gnu: Add cura-binary-data Malte Frank Gerdes
2020-10-17 10:35 ` [bug#44045] [PATCH 04/10] gnu: Add uranium Malte Frank Gerdes
2020-10-17 10:35 ` [bug#44045] [PATCH 05/10] gnu: Add libCharon Malte Frank Gerdes
2020-10-17 10:35 ` [bug#44045] [PATCH 06/10] gnu: Add libSavitar Malte Frank Gerdes
2020-10-17 10:35 ` Malte Frank Gerdes [this message]
2020-10-17 10:35 ` [bug#44045] [PATCH 08/10] gnu: Add python-pyinstrument-cext Malte Frank Gerdes
2020-10-17 10:35 ` [bug#44045] [PATCH 09/10] gnu: Add python-pyinstrument Malte Frank Gerdes
2020-10-17 10:35 ` [bug#44045] [PATCH 10/10] gnu: Add python-trimesh Malte Frank Gerdes
2020-10-19 7:08 ` [bug#44045] [PATCH 00/10] WIP Ultimaker Cura Efraim Flashner
2020-10-21 14:10 ` [bug#44045] [PATCH 10/10 v2] " Malte Frank Gerdes
2020-10-21 14:16 ` [bug#44045] [PATCH 08/10 " Malte Frank Gerdes
2022-04-07 20:41 ` bug#44045: [PATCH 00/10] " Guillaume Le Vaillant
2022-04-11 13:32 ` [bug#44045] " Malte Gerdes
2023-02-19 23:00 ` Demis Balbach
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201017103547.13769-7-malte.f.gerdes@gmail.com \
--to=malte.f.gerdes@gmail.com \
--cc=44045@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.