[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add minimodem.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add minimodem. |
Date: |
Wed, 26 May 2021 04:32:46 -0400 |
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 63962f9 gnu: Add minimodem.
63962f9 is described below
commit 63962f9b6cb0358d091b9b97b66d348e865229e2
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Wed May 26 10:29:22 2021 +0200
gnu: Add minimodem.
* gnu/packages/radio.scm (minimodem): New variable.
---
gnu/packages/radio.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 6b2c3eb..72f0618 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -1927,3 +1927,32 @@ spectrum waterfall. It supports at least the following
models:
@end itemize\n")
(license (list license:expat
license:gpl3)))))
+
+(define-public minimodem
+ (package
+ (name "minimodem")
+ (version "0.24")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://www.whence.com/minimodem/minimodem-"
+ version ".tar.gz"))
+ (sha256
+ (base32 "13ipyh39l7p420j1j9kvwyskv2nqnimls1a3z1klsa1zivds9k7q"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (inputs
+ `(("alsa-lib" ,alsa-lib)
+ ("fftwf" ,fftwf)
+ ("libsndfile" ,libsndfile)
+ ("pulseaudio" ,pulseaudio)))
+ (home-page "http://www.whence.com/minimodem/")
+ (synopsis "Software audio FSK modem")
+ (description
+ "Minimodem is a command-line program which decodes (or generates) audio
+modem tones at any specified baud rate, using various framing protocols. It
+acts a general-purpose software FSK modem, and includes support for various
+standard FSK protocols such as Bell103, Bell202, RTTY, TTY/TDD, NOAA SAME, and
+Caller-ID.")
+ (license license:gpl3+)))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add minimodem.,
guix-commits <=