diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-05-15 22:55:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-05-15 22:55:24 +0200 |
commit | 25487c3fe6a41dd62f6e53f256392224a3be2a08 (patch) | |
tree | 1051a1716d962ba0a7bbbf9dc8f7b67aa2674400 /gnu/packages/radio.scm | |
parent | 4a9597e4516ec5ca58df3e007fcd5ef1d3fd2e54 (diff) | |
parent | 46eac03e720e9b21d225e2ec1c41299c09202d18 (diff) | |
download | guix-25487c3fe6a41dd62f6e53f256392224a3be2a08.tar.gz guix-25487c3fe6a41dd62f6e53f256392224a3be2a08.zip |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/radio.scm')
-rw-r--r-- | gnu/packages/radio.scm | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index e008b23a59..b7647ea1ae 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -497,7 +497,6 @@ environment.") `(("doxygen" ,doxygen) ("pkg-config" ,pkg-config) ("pybind11" ,pybind11) - ("python" ,python) ("python-mako" ,python-mako) ("python-six" ,python-six))) (inputs @@ -509,8 +508,21 @@ environment.") ("hackrf" ,hackrf) ("libsndfile" ,libsndfile) ("log4cpp" ,log4cpp) + ("python" ,python) + ("python-numpy" ,python-numpy) + ("python-pyqt" ,python-pyqt) ("rtl-sdr" ,rtl-sdr) ("volk" ,volk))) + (arguments + `(#:modules ((guix build cmake-build-system) + ((guix build python-build-system) #:prefix python:) + (guix build utils)) + #:imported-modules (,@%cmake-build-system-modules + (guix build python-build-system)) + #:phases + (modify-phases %standard-phases + (add-after 'install 'wrap-python + (assoc-ref python:%standard-phases 'wrap))))) (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.") |