gnu: Add qsstv.

* gnu/packages/radio.scm (qsstv): New variable.
This commit is contained in:
Guillaume Le Vaillant 2021-01-27 20:08:19 +01:00
parent 6be6945251
commit aee72ed1c6
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -66,6 +66,7 @@ (define-module (gnu packages radio)
#: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 @@ (define-public nanovna-saver
"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))))