guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add kockmorse.


From: guix-commits
Subject: branch master updated: gnu: Add kockmorse.
Date: Thu, 27 Jan 2022 15:46:16 -0500

This is an automated email from the git hooks/post-receive script.

glv pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 3ee633feb2 gnu: Add kockmorse.
3ee633feb2 is described below

commit 3ee633feb2dc873df0217c36b89dbde0b4fbb0cc
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Thu Jan 27 21:24:33 2022 +0100

    gnu: Add kockmorse.
    
    * gnu/packages/radio.scm (kockmorse): New variable.
---
 gnu/packages/radio.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 1e02e2f33e..3cc5b73575 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -1583,6 +1583,32 @@ programs using the library: cw, cwgen, cwcp and xcwcp.  
The programs are
 intended for people who want to learn receiving and sending morse code.")
     (license license:gpl2+)))
 
+(define-public kockmorse
+  (package
+    (name "kochmorse")
+    (version "3.5.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hmatuschek/kochmorse";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1s1aj223n57rpc95rih98z08xnyhq2zp02byzrc3f7s01fv3nj0l"))))
+    (build-system qt-build-system)
+    (native-inputs
+     (list qttools))
+    (inputs
+     (list qtbase-5 qtmultimedia))
+    (arguments
+     `(#:tests? #f)) ; No test suite
+    (home-page "https://dm3mat.darc.de/kochmorse/";)
+    (synopsis "Morse code tutor")
+    (description
+     "KochMorse is a simple morse-code tutor using the Koch method.")
+    (license license:gpl2+)))
+
 (define-public gnuais
   (package
     (name "gnuais")



reply via email to

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