diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2021-03-10 09:45:52 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2021-03-10 10:54:56 +0100 |
commit | e212f32dcefee7522084f7af845be4a9a662e4c7 (patch) | |
tree | 8ceecb9a99315b92ab5a4cac641e563b048529ff /gnu | |
parent | f4fd7bda51f26c3ae00c4c8681c344074739df5c (diff) | |
download | guix-e212f32dcefee7522084f7af845be4a9a662e4c7.tar.gz |
gnu: Add aldo.
* gnu/packages/radio.scm (aldo): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/radio.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 6a48e8746f..e7f3b33cc2 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+))) |