me
/
guix
Archived
1
0
Fork 0

gnu: soapyhackrf: Update to 0.3.3-1.fa83fac.

* gnu/packages/radio.scm (soapyhackrf): Update to 0.3.3-1.fa83fac.
master
Guillaume Le Vaillant 2021-06-08 19:04:45 +02:00
parent 503c2039a2
commit 0c0d84603d
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 27 additions and 23 deletions

View File

@ -313,29 +313,33 @@ SoapySDR library.")
(license license:expat)))
(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)))
;; Use commit because some fixes are not in a release yet
;; (last release was in 2018).
(let ((commit "fa83fac695fad9e198cc9a19a1e1a9c344fc191f")
(revision "1"))
(package
(name "soapyhackrf")
(version (git-version "0.3.3" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pothosware/SoapyHackRF")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0sfb2gq4lp1fff921xm3bqqjv3srdsczjj8ps5jfhxhr6yx3a329"))))
(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 soapyrtlsdr
(package