mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add soapyhackrf.
* gnu/packages/radio.scm (soapyhackrf): New variable.
This commit is contained in:
parent
524c64152a
commit
59ce827618
1 changed files with 25 additions and 0 deletions
|
@ -287,6 +287,31 @@ (define-public soapysdr
|
|||
defined radio hardware devices with a common API.")
|
||||
(license license:boost1.0)))
|
||||
|
||||
(define-public soapyhackrf
|
||||
(package
|
||||
(name "soapyhackrf")
|
||||
(version "0.3.3")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/pothosware/SoapyHackRF")
|
||||
(commit (string-append "soapy-hackrf-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1awn89z462500gb3fjb7x61b1znkjri9n1d39bqfip1qk4s11pxc"))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs
|
||||
`(("hackrf" ,hackrf)
|
||||
("soapysdr" ,soapysdr)))
|
||||
(arguments
|
||||
`(#:tests? #f)) ; No test suite
|
||||
(home-page "https://github.com/pothosware/SoapyHackRF/wiki")
|
||||
(synopsis "SoapySDR HackRF module")
|
||||
(description
|
||||
"This package provides HackRF devices support to the SoapySDR library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public chirp
|
||||
(package
|
||||
(name "chirp")
|
||||
|
|
Loading…
Reference in a new issue