diff options
author | Rutherther <rutherther@ditigal.xyz> | 2025-04-20 18:47:20 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2025-04-21 11:49:28 +0200 |
commit | 115b2bc13aa3ca56d1e6422fe05ccbd52cac9044 (patch) | |
tree | a53fb389e9418a22eaba6ec55031621cf4d5fa38 | |
parent | 802f5841f0de0af62ea39a4b14c029a2923f0e88 (diff) | |
download | guix-115b2bc13aa3ca56d1e6422fe05ccbd52cac9044.tar.gz guix-115b2bc13aa3ca56d1e6422fe05ccbd52cac9044.zip |
gnu: sdrangel: Compile with PlutoSDR support.
* gnu/packages/radio.scm (sdrangel)[inputs]: Add libiio.
[arguments]{#:configure-flags}: Use libiio.
Change-Id: I7cf959b61af567a3133034ad52d5f4564f099c30
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r-- | gnu/packages/radio.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 465a998bc8..e7a774fb4d 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm @@ -2800,6 +2800,7 @@ voice formats.") hamlib hidapi libdab + libiio libusb mbelib opencv @@ -2840,7 +2841,9 @@ voice formats.") (string-append "-DSGP4_DIR=" #$(this-package-input "sgp4")) (string-append "-DSOAPYSDR_DIR=" - #$(this-package-input "soapysdr"))) + #$(this-package-input "soapysdr")) + (string-append "-DIIO_DIR=" + #$(this-package-input "libiio"))) #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-unrecognized-compiler-option |