gnu: Add soapysdr.

* gnu/packages/radio.scm (soapysdr): New variable.
This commit is contained in:
Guillaume Le Vaillant 2021-06-05 23:05:02 +02:00
parent 08b55f1443
commit 524c64152a
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -258,6 +258,35 @@ (define-public airspyhf
with this package. E.g.: @code{(udev-rules-service 'airspyhf airspyhf)}") with this package. E.g.: @code{(udev-rules-service 'airspyhf airspyhf)}")
(license license:bsd-3))) (license license:bsd-3)))
(define-public soapysdr
(package
(name "soapysdr")
(version "0.8.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pothosware/SoapySDR")
(commit (string-append "soapy-sdr-" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1dy25zxk7wmg7ik82dx7h3bbbynvalbz1dxsl7kgm3374yxhnixv"))))
(build-system cmake-build-system)
(native-inputs
`(("python" ,python)
("swig" ,swig)))
(native-search-paths
(list (search-path-specification
(variable "SOAPY_SDR_PLUGIN_PATH")
(files (list (string-append "lib/SoapySDR/modules"
(version-major+minor version)))))))
(home-page "https://github.com/pothosware/SoapySDR/wiki")
(synopsis "Vendor and platform neutral SDR support library")
(description
"SoapySDR is a library designed to support several kinds of software
defined radio hardware devices with a common API.")
(license license:boost1.0)))
(define-public chirp (define-public chirp
(package (package
(name "chirp") (name "chirp")