mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 06:42:14 -05:00
gnu: gnuradio-osmosdr: Update to 0.2.3-0.a100eb0.
* gnu/packages/radio.scm (gnuradio-osmosdr): Update to 0.2.3-0.a100eb0. [native-inputs]: Replace swig by pybind11. [inputs]: Add libsndfile.
This commit is contained in:
parent
50e33007a5
commit
f1df119224
1 changed files with 37 additions and 33 deletions
|
@ -438,40 +438,44 @@ (define-public gnuradio
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public gnuradio-osmosdr
|
(define-public gnuradio-osmosdr
|
||||||
(package
|
;; No tag for version supporting Gnuradio 3.9; use commit.
|
||||||
(name "gnuradio-osmosdr")
|
(let ((commit "a100eb024c0210b95e4738b6efd836d48225bd03")
|
||||||
(version "0.2.2")
|
(revision "0"))
|
||||||
(source
|
(package
|
||||||
(origin
|
(name "gnuradio-osmosdr")
|
||||||
(method git-fetch)
|
(version (git-version "0.2.3" revision commit))
|
||||||
(uri (git-reference
|
(source
|
||||||
(url "https://git.osmocom.org/gr-osmosdr")
|
(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-osmosdr")
|
||||||
(base32 "1aqj5cylipmmjh1x1kb2j8262hxq6mi86dgb2zphj94wvsab2ghx"))))
|
(commit commit)))
|
||||||
(build-system cmake-build-system)
|
(file-name (git-file-name name version))
|
||||||
(native-inputs
|
(sha256
|
||||||
`(("doxygen" ,doxygen)
|
(base32 "1pk5gnyznfyy510lbqzg9ijcb1fnhmn547n24aiqyrxd6i6vv1ki"))))
|
||||||
("pkg-config" ,pkg-config)
|
(build-system cmake-build-system)
|
||||||
("python" ,python)
|
(native-inputs
|
||||||
("python-mako" ,python-mako)
|
`(("doxygen" ,doxygen)
|
||||||
("python-six" ,python-six)
|
("pkg-config" ,pkg-config)
|
||||||
("swig" ,swig)))
|
("pybind11" ,pybind11)
|
||||||
(inputs
|
("python" ,python)
|
||||||
`(("boost" ,boost)
|
("python-mako" ,python-mako)
|
||||||
("fftwf" ,fftwf)
|
("python-six" ,python-six)))
|
||||||
("gmp" ,gmp)
|
(inputs
|
||||||
("gnuradio" ,gnuradio)
|
`(("boost" ,boost)
|
||||||
("hackrf" ,hackrf)
|
("fftwf" ,fftwf)
|
||||||
("log4cpp" ,log4cpp)
|
("gmp" ,gmp)
|
||||||
("rtl-sdr" ,rtl-sdr)
|
("gnuradio" ,gnuradio)
|
||||||
("volk" ,volk)))
|
("hackrf" ,hackrf)
|
||||||
(synopsis "GNU Radio block for interfacing with various radio hardware")
|
("libsndfile" ,libsndfile)
|
||||||
(description "This is a block for GNU Radio allowing to use a common API
|
("log4cpp" ,log4cpp)
|
||||||
|
("rtl-sdr" ,rtl-sdr)
|
||||||
|
("volk" ,volk)))
|
||||||
|
(synopsis "GNU Radio block for interfacing with various radio hardware")
|
||||||
|
(description "This is a block for GNU Radio allowing to use a common API
|
||||||
to access different radio hardware.")
|
to access different radio hardware.")
|
||||||
(home-page "https://osmocom.org/projects/gr-osmosdr/wiki/GrOsmoSDR")
|
(home-page "https://osmocom.org/projects/gr-osmosdr/wiki/GrOsmoSDR")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public libosmo-dsp
|
(define-public libosmo-dsp
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue