From b6bfad7e323110d92f4535acdf4c0259219a1c18 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Mon, 3 May 2021 16:50:37 +0200 Subject: gnu: Add serialdv. * gnu/packages/radio.scm (serialdv): New variable. --- gnu/packages/radio.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 5329a75794..910f63959a 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -1630,3 +1630,26 @@ (define-public csdr @acronym{SDRs, Software Defined Radios}, and the @code{csdr} command line program that can be used to build simple signal processing flow graphs.") (license license:gpl3+)))) + +(define-public serialdv + (package + (name "serialdv") + (version "1.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/f4exb/serialDV") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0d88h2wjhf79nisiv96bq522hkbknzm88wsv0q9k33mzmrwnrx93")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) ; No test suite. + (home-page "https://github.com/f4exb/serialDV") + (synopsis "Audio interface for AMBE3000 based devices") + (description + "SerialDV is a minimal interface to encode and decode audio with AMBE3000 +based devices in packet mode over a serial link.") + (license license:gpl3+))) -- cgit v1.2.3