guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

117/143: gnu: Add libatcore.


From: guix-commits
Subject: 117/143: gnu: Add libatcore.
Date: Mon, 21 Nov 2022 16:10:53 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 4033249e2e8482ba1d6270ee21306200e4dd3715
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Sat Sep 24 18:28:08 2022 +0200

    gnu: Add libatcore.
    
    * gnu/packages/kde-utils.scm (libatcore): New variable.
    
    Signed-off-by: Marius Bakke <marius@gnu.org>
---
 gnu/packages/kde-utils.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm
index d8dc755a98..2657c8aff5 100644
--- a/gnu/packages/kde-utils.scm
+++ b/gnu/packages/kde-utils.scm
@@ -237,6 +237,31 @@ Kate's features include:
       (license ;GPL for programs, LGPL for libraries
                (list license:gpl2+ license:lgpl2.0)))))
 
+(define-public libatcore
+  (let ((commit "0de6393ed3e721537dec50b0ad174d83f1207eb6")
+        (revision "1"))
+    (package
+      (name "libatcore")
+      (version (git-version "1.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://invent.kde.org/libraries/atcore";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "1830r6ylpn3l7y2frl8cih5cpjgbkfrib9jq7jklf8aszhlsihf2"))))
+      (build-system qt-build-system)
+      (native-inputs (list extra-cmake-modules))
+      (inputs (list qtcharts qtdeclarative-5 qtserialport))
+      (home-page "https://invent.kde.org/libraries/atcore";)
+      (synopsis "Library for connection and management of 3D printers")
+      (description
+       "This package provides a API to manage the serial connection between
+the computer and 3D Printers.")
+      (license (list license:lgpl2.1 license:lgpl3)))))
+
 (define-public wacomtablet
   (package
     (name "wacomtablet")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]