[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Add aldo.
From: |
guix-commits |
Subject: |
01/02: gnu: Add aldo. |
Date: |
Wed, 10 Mar 2021 04:55:47 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit e212f32dcefee7522084f7af845be4a9a662e4c7
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Wed Mar 10 09:45:52 2021 +0100
gnu: Add aldo.
* gnu/packages/radio.scm (aldo): New variable.
---
gnu/packages/radio.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 6a48e87..e7f3b33 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -68,6 +68,7 @@
#:use-module (gnu packages tex)
#:use-module (gnu packages texinfo)
#:use-module (gnu packages video)
+ #:use-module (gnu packages xiph)
#:use-module (gnu packages xml)
#:use-module (gnu packages xorg)
#:use-module (guix build-system cmake)
@@ -1240,3 +1241,30 @@ It can perform as:
@item APRStt gateway
@end itemize\n")
(license license:gpl2+)))
+
+(define-public aldo
+ (package
+ (name "aldo")
+ (version "0.7.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://savannah/aldo/aldo-" version ".tar.bz2"))
+ (sha256
+ (base32 "14lzgldqzbbzydsy1cai3wln3hpyj1yhj8ji3wygyzr616fq9f7i"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("ao" ,ao)))
+ (home-page "https://www.nongnu.org/aldo/")
+ (synopsis "Morse code tutor")
+ (description
+ "Aldo is a morse code learning tool providing four type of training
+methods:
+
+@itemize
+@item Classic exercice,
+@item Koch method,
+@item Read from file,
+@item Callsign exercice.
+@end itemize\n")
+ (license license:gpl3+)))