[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add cutecom.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add cutecom. |
Date: |
Tue, 28 Jan 2025 16:09:56 -0500 |
This is an automated email from the git hooks/post-receive script.
avp pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new e90bd12f49 gnu: Add cutecom.
e90bd12f49 is described below
commit e90bd12f49e08f4d30007e80eaf5649ef98b5517
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Sat Jan 18 21:59:34 2025 +0300
gnu: Add cutecom.
* gnu/packages/engineering.scm (cutecom): New variable.
Change-Id: Ib560ba855074514e9e2df1884b49722218b1a410
---
gnu/packages/engineering.scm | 29 ++++++++++++++++++++++++++++-
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 47ba393c47..4bbfdb81ed 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -33,7 +33,7 @@
;;; Copyright © 2022 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
;;; Copyright © 2022 Konstantinos Agiannis <agiannis.kon@gmail.com>
;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
-;;; Copyright © 2022, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
+;;; Copyright © 2022, 2024, 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2022, 2023, 2025 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2023 Theofilos Pechlivanis <theofilos.pechlivanis@gmail.com>
@@ -175,6 +175,33 @@
#:use-module (gnu packages xorg)
#:use-module ((srfi srfi-1) #:hide (zip)))
+(define-public cutecom
+ (package
+ (name "cutecom")
+ (version "0.60.0-RC1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/cutecom/cutecom")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1k67x4l27ac6sb944b42zscm0ffq2fxbghapspgj75g4dr8ip38a"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:tests? #f)) ;no tests
+ (inputs
+ (list qtbase qttools qtserialport))
+ (home-page "https://gitlab.com/cutecom/cutecom")
+ (synopsis "Graphical serial terminal")
+ (description
+ "@code{cutecom} is a graphical serial terminal, like @code{minicom}. It
is
+aimed mainly at hardware developers or other people who need a terminal to
talk to
+their devices.")
+ (license license:gpl3)))
+
(define-public librecad
(package
(name "librecad")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add cutecom.,
guix-commits <=