[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add qsstv.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add qsstv. |
Date: |
Wed, 27 Jan 2021 16:34:00 -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 aee72ed gnu: Add qsstv.
aee72ed is described below
commit aee72ed1c6ee75fb8fe8736e14596a429d023509
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Wed Jan 27 20:08:19 2021 +0100
gnu: Add qsstv.
* gnu/packages/radio.scm (qsstv): New variable.
---
gnu/packages/radio.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 95e86e5..c3f1c0c 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -66,6 +66,7 @@
#:use-module (gnu packages tcl)
#:use-module (gnu packages tex)
#:use-module (gnu packages texinfo)
+ #:use-module (gnu packages video)
#:use-module (gnu packages xml)
#:use-module (gnu packages xorg)
#:use-module (guix build-system cmake)
@@ -1147,3 +1148,43 @@ modes:
"NanoVNA-Saver is a tool for reading, displaying and saving data from the
NanoVNA vector network analyzers.")
(license license:gpl3+)))
+
+(define-public qsstv
+ (package
+ (name "qsstv")
+ (version "9.4.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://users.telenet.be/on4qz/qsstv/downloads/"
+ "qsstv_" version ".tar.gz"))
+ (sha256
+ (base32 "0f9hx6sy418cb23fadll298pqbc5l2lxsdivi4vgqbkvx7sw58zi"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (inputs
+ `(("alsa-lib" ,alsa-lib)
+ ("fftw" ,fftw)
+ ("fftwf" ,fftwf)
+ ("hamlib" ,hamlib)
+ ("openjpeg" ,openjpeg)
+ ("pulseaudio" ,pulseaudio)
+ ("qtbase" ,qtbase)
+ ("v4l-utils" ,v4l-utils)))
+ (arguments
+ `(#:tests? #f ; No test suite.
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'configure
+ (lambda* (#:key outputs #:allow-other-keys)
+ (invoke "qmake"
+ (string-append "PREFIX=" (assoc-ref outputs "out")))
+ #t)))))
+ (home-page "http://users.telenet.be/on4qz/qsstv/")
+ (synopsis "Program for receiving and transmitting SSTV and HAMDRM")
+ (description
+ "QSSTV is a program for receiving and transmitting SSTV and HAMDRM
+(sometimes called DSSTV). It is compatible with most of MMSSTV and EasyPal.")
+ (license (list license:gpl2+
+ license:qwt1.0))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add qsstv.,
guix-commits <=