gnu: gnuradio-iqbalance: Update to 0.38.2-0.fbee239.
* gnu/packages/radio.scm (gnuradio-iqbalance): Update to 0.38.2-0.fbee239. [native-inputs]: Replace swig by pybind11.
This commit is contained in:
parent
d3e7f1eeac
commit
50e33007a5
1 changed files with 35 additions and 32 deletions
|
@ -518,36 +518,39 @@ primitives for SDR (Software Defined Radio).")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public gnuradio-iqbalance
|
(define-public gnuradio-iqbalance
|
||||||
(package
|
;; No tag for version supporting Gnuradio 3.9; use commit.
|
||||||
(name "gnuradio-iqbalance")
|
(let ((commit "fbee239a6fb36dd2fb564f6e6a0d393c4bc844db")
|
||||||
(version "0.38.1")
|
(revision "0"))
|
||||||
(source
|
(package
|
||||||
(origin
|
(name "gnuradio-iqbalance")
|
||||||
(method git-fetch)
|
(version (git-version "0.38.2" revision commit))
|
||||||
(uri (git-reference
|
(source
|
||||||
(url "https://git.osmocom.org/gr-iqbal")
|
(origin
|
||||||
(commit (string-append "v" version))))
|
(method git-fetch)
|
||||||
(file-name (git-file-name name version))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://git.osmocom.org/gr-iqbal")
|
||||||
(base32 "0ksagwz05p3b0702q7ljq7013xmp0ijp30my9z6s3p7ja8dj42s3"))))
|
(commit commit)))
|
||||||
(build-system cmake-build-system)
|
(file-name (git-file-name name version))
|
||||||
(native-inputs
|
(sha256
|
||||||
`(("doxygen" ,doxygen)
|
(base32 "12p193ngcs65nd3lynry119nhv40mikamqkw37wdln7lawx3nw7p"))))
|
||||||
("pkg-config" ,pkg-config)
|
(build-system cmake-build-system)
|
||||||
("python" ,python)
|
(native-inputs
|
||||||
("python-numpy" ,python-numpy)
|
`(("doxygen" ,doxygen)
|
||||||
("python-six" ,python-six)
|
("pkg-config" ,pkg-config)
|
||||||
("swig" ,swig)))
|
("pybind11" ,pybind11)
|
||||||
(inputs
|
("python" ,python)
|
||||||
`(("boost" ,boost)
|
("python-numpy" ,python-numpy)
|
||||||
("fftwf" ,fftwf)
|
("python-six" ,python-six)))
|
||||||
("gmp" ,gmp)
|
(inputs
|
||||||
("gnuradio" ,gnuradio)
|
`(("boost" ,boost)
|
||||||
("libosmo-dsp" ,libosmo-dsp)
|
("fftwf" ,fftwf)
|
||||||
("log4cpp" ,log4cpp)
|
("gmp" ,gmp)
|
||||||
("volk" ,volk)))
|
("gnuradio" ,gnuradio)
|
||||||
(synopsis "GNU Radio block to correct IQ imbalance")
|
("libosmo-dsp" ,libosmo-dsp)
|
||||||
(description
|
("log4cpp" ,log4cpp)
|
||||||
|
("volk" ,volk)))
|
||||||
|
(synopsis "GNU Radio block to correct IQ imbalance")
|
||||||
|
(description
|
||||||
"This is a GNU Radio block to correct IQ imbalance in quadrature
|
"This is a GNU Radio block to correct IQ imbalance in quadrature
|
||||||
receivers. It's composed of two main block:
|
receivers. It's composed of two main block:
|
||||||
@itemize
|
@itemize
|
||||||
|
@ -555,8 +558,8 @@ receivers. It's composed of two main block:
|
||||||
@item Optimize: Attempts to auto-detect the phase and amplitude error to feed
|
@item Optimize: Attempts to auto-detect the phase and amplitude error to feed
|
||||||
to the fix block above.
|
to the fix block above.
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(home-page "https://git.osmocom.org/gr-iqbal/")
|
(home-page "https://git.osmocom.org/gr-iqbal/")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public gqrx
|
(define-public gqrx
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue