mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add soapyremote.
* gnu/packages/radio.scm (soapyremote): New variable.
This commit is contained in:
parent
2a0431e064
commit
086f27cf8c
1 changed files with 28 additions and 0 deletions
|
@ -40,6 +40,7 @@ (define-module (gnu packages radio)
|
|||
#:use-module (gnu packages algebra)
|
||||
#:use-module (gnu packages astronomy)
|
||||
#:use-module (gnu packages audio)
|
||||
#:use-module (gnu packages avahi)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages bash)
|
||||
|
@ -478,6 +479,33 @@ (define-public soapymultisdr
|
|||
a single device wrapper.")
|
||||
(license license:boost1.0))))
|
||||
|
||||
(define-public soapyremote
|
||||
(let ((commit "f375555e7380acfd2517acde598e2e553e08df88")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "soapyremote")
|
||||
(version (git-version "0.5.2" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/pothosware/SoapyRemote")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0whn87wck7agsk3af4lh7nyyjn0ncs3xdny4vsd94qbjikfl6x5z"))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs
|
||||
(list avahi soapysdr))
|
||||
(arguments
|
||||
'(#:tests? #f)) ; No test suite
|
||||
(home-page "https://github.com/pothosware/SoapyRemote")
|
||||
(synopsis "Remote support for Soapy SDR")
|
||||
(description
|
||||
"This is a SoapySDR module to use a supported device transparently over
|
||||
a local network link.")
|
||||
(license license:boost1.0))))
|
||||
|
||||
(define-public soapyrtlsdr
|
||||
(package
|
||||
(name "soapyrtlsdr")
|
||||
|
|
Loading…
Reference in a new issue