mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add welle-io.
* gnu/packages/radio.scm (welle-io): New variable.
This commit is contained in:
parent
92ff287e74
commit
561017f838
1 changed files with 41 additions and 0 deletions
|
@ -61,6 +61,7 @@ (define-module (gnu packages radio)
|
||||||
#:use-module (gnu packages logging)
|
#:use-module (gnu packages logging)
|
||||||
#:use-module (gnu packages lua)
|
#:use-module (gnu packages lua)
|
||||||
#:use-module (gnu packages maths)
|
#:use-module (gnu packages maths)
|
||||||
|
#:use-module (gnu packages mp3)
|
||||||
#:use-module (gnu packages multiprecision)
|
#:use-module (gnu packages multiprecision)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
#:use-module (gnu packages networking)
|
#:use-module (gnu packages networking)
|
||||||
|
@ -1486,3 +1487,43 @@ (define-public dream
|
||||||
"Dream is a software implementation of a Digital Radio Mondiale (DRM)
|
"Dream is a software implementation of a Digital Radio Mondiale (DRM)
|
||||||
receiver.")
|
receiver.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public welle-io
|
||||||
|
(package
|
||||||
|
(name "welle-io")
|
||||||
|
(version "2.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/albrechtl/welle.io")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "04fpm6sc431dl9i5h53xpd6k85j22sv8aawl7b6wv2fzpfsd9fwa"))))
|
||||||
|
(build-system qt-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("alsa-lib" ,alsa-lib)
|
||||||
|
("faad2" ,faad2)
|
||||||
|
("fftwf" ,fftwf)
|
||||||
|
("lame" ,lame)
|
||||||
|
("libusb" ,libusb)
|
||||||
|
("mpg123" ,mpg123)
|
||||||
|
("rtl-sdr" ,rtl-sdr)
|
||||||
|
("qtbase" ,qtbase)
|
||||||
|
("qtcharts" ,qtcharts)
|
||||||
|
("qtdeclarative" ,qtdeclarative)
|
||||||
|
("qtgraphicaleffects" ,qtgraphicaleffects)
|
||||||
|
("qtmultimedia" ,qtmultimedia)
|
||||||
|
("qtquickcontrols2" ,qtquickcontrols2)))
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags '("-DRTLSDR=ON")
|
||||||
|
#:tests? #f))
|
||||||
|
(home-page "https://www.welle.io/")
|
||||||
|
(synopsis "DAB and DAB+ software radio")
|
||||||
|
(description
|
||||||
|
"@code{welle.io} is a Digital Audio Broadcasting (DAB and DAB+) software
|
||||||
|
defined radio with support for rtl-sdr.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue