gnu: sdrangel: Update to 6.17.3.
* gnu/packages/radio.scm (sdrangel): Update to 6.17.3. [arguments]: Add 'fix-boost-compatibility' phase.
This commit is contained in:
parent
4d02165992
commit
89eb1f2a76
1 changed files with 12 additions and 3 deletions
|
@ -2040,7 +2040,7 @@ voice formats.")
|
||||||
(define-public sdrangel
|
(define-public sdrangel
|
||||||
(package
|
(package
|
||||||
(name "sdrangel")
|
(name "sdrangel")
|
||||||
(version "6.17.1")
|
(version "6.17.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -2049,7 +2049,7 @@ voice formats.")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1yraif6dzs5sdskxnj937x613xz3zxnqim5mnk18vj2m0apcaqam"))))
|
(base32 "16la2g1xqahgnni1qhpnfbqlcqsiihxnm2d6nv2241khb3lhi0i9"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("doxygen" ,doxygen)
|
`(("doxygen" ,doxygen)
|
||||||
|
@ -2102,7 +2102,16 @@ voice formats.")
|
||||||
(string-append "-DSGP4_DIR="
|
(string-append "-DSGP4_DIR="
|
||||||
#$(this-package-input "sgp4"))
|
#$(this-package-input "sgp4"))
|
||||||
(string-append "-DSOAPYSDR_DIR="
|
(string-append "-DSOAPYSDR_DIR="
|
||||||
#$(this-package-input "soapysdr")))))
|
#$(this-package-input "soapysdr")))
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-boost-compatibility
|
||||||
|
(lambda _
|
||||||
|
(substitute*
|
||||||
|
'("plugins/channelrx/noisefigure/noisefigure.cpp"
|
||||||
|
"plugins/channelrx/noisefigure/noisefigureenrdialog.cpp")
|
||||||
|
(("boost::math::barycentric_rational<double>")
|
||||||
|
"boost::math::interpolators::barycentric_rational<double>")))))))
|
||||||
(home-page "https://github.com/f4exb/sdrangel/wiki")
|
(home-page "https://github.com/f4exb/sdrangel/wiki")
|
||||||
(synopsis "Software defined radio")
|
(synopsis "Software defined radio")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue