all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: phodina via Guix-patches via <guix-patches@gnu.org>
To: Tobias Geerinckx-Rice <me@tobias.gr>
Cc: 49576@debbugs.gnu.org
Subject: [bug#49576] [PATCH] Add sterm
Date: Sat, 17 Jul 2021 12:08:27 +0000	[thread overview]
Message-ID: <cvMzjxFjTYD2u4Yu7O9VDuG0eCwLJ6B563cZq2ZcVC7R1kFbNlE7uKAtM83pRbsG30NMilIgAXw3DXeHA4T_e-h6P-HPSGhu6ZMIIoVhqS4=@protonmail.com> (raw)
In-Reply-To: <c7678ef024e086707721c0d46337b919@tobias.gr>

Thanks Tobias. Now it builds without errors.

Yes, I used Nix.

Here's the updated patch:
---
index 4429a2b75a..e0eb92967c 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -1297,6 +1297,36 @@ replacement for the OpenDWG libraries.")
     (description "@code{minicom} is a serial terminal emulator.")
     (license license:gpl2+)))

+(define-public sterm
+(package
+  (name "sterm")
+  (version "20200306")
+  (source (origin
+            (method git-fetch)
+            (uri (git-reference
+                  (url "https://github.com/wentasah/sterm")
+                  (commit version)))
+            (file-name (git-file-name name version))
+            (sha256
+             (base32
+              "031pd8yz2bfzqbari6za1c3xcqmw94ap4vbrjzb3v6izjcrca58c"))))
+  (build-system gnu-build-system)
+  (arguments
+    `(#:tests? #f ; no tests
+      #:make-flags
+       (list (string-append "CC=" ,(cc-for-target))
+             (string-append "PREFIX=" %output))
+      #:phases
+      (modify-phases %standard-phases (delete 'configure))))
+  (synopsis "Simple serial terminal")
+  (description "This is a minimalist terminal program like minicom or cu.
+The only thing it does is creating a bidirectional connection between
+stdin/stdout and a terminal device (e.g. serial line).
+It can also set serial line baudrate, manipulate DTR/RTS modem lines,
+send break and throttle transmission speed.")
+  (home-page "https://github.com/wentasah/sterm")
+  (license license:gpl3+)))
+
 (define-public harminv
   (package
     (name "harminv")
--
2.31.1




  reply	other threads:[~2021-07-17 12:09 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-15 16:17 [bug#49576] [PATCH] Add sterm phodina via Guix-patches via
2021-07-16 13:03 ` 宋文武
2021-07-17 10:50   ` phodina via Guix-patches via
2021-07-17 11:41     ` Tobias Geerinckx-Rice via Guix-patches via
2021-07-17 12:08       ` phodina via Guix-patches via [this message]
2021-07-18  9:42         ` bug#49576: " 宋文武

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='cvMzjxFjTYD2u4Yu7O9VDuG0eCwLJ6B563cZq2ZcVC7R1kFbNlE7uKAtM83pRbsG30NMilIgAXw3DXeHA4T_e-h6P-HPSGhu6ZMIIoVhqS4=@protonmail.com' \
    --to=guix-patches@gnu.org \
    --cc=49576@debbugs.gnu.org \
    --cc=me@tobias.gr \
    --cc=phodina@protonmail.com \
    /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.