mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add cutecom.
* gnu/packages/engineering.scm (cutecom): New variable. Change-Id: Ib560ba855074514e9e2df1884b49722218b1a410
This commit is contained in:
parent
6083002133
commit
e90bd12f49
1 changed files with 28 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue