gnu: sdrangel: Fix build.
* gnu/packages/radio.scm (sdrangel)[arguments]: Replace references to '%build-inputs' by gexp.
This commit is contained in:
parent
463a47f4d7
commit
eded8b4f17
1 changed files with 15 additions and 14 deletions
|
@ -26,6 +26,7 @@
|
||||||
|
|
||||||
(define-module (gnu packages radio)
|
(define-module (gnu packages radio)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
|
@ -2083,20 +2084,20 @@ voice formats.")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; No test suite.
|
`(#:tests? #f ; No test suite.
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list (string-append "-DAPT_DIR="
|
,#~(list (string-append "-DAPT_DIR="
|
||||||
(assoc-ref %build-inputs "aptdec"))
|
#$(this-package-input "aptdec"))
|
||||||
(string-append "-DDAB_DIR="
|
(string-append "-DDAB_DIR="
|
||||||
(assoc-ref %build-inputs "libdab"))
|
#$(this-package-input "libdab"))
|
||||||
(string-append "-DDSDCC_DIR="
|
(string-append "-DDSDCC_DIR="
|
||||||
(assoc-ref %build-inputs "dsdcc"))
|
#$(this-package-input "dsdcc"))
|
||||||
(string-append "-DMBE_DIR="
|
(string-append "-DMBE_DIR="
|
||||||
(assoc-ref %build-inputs "mbelib"))
|
#$(this-package-input "mbelib"))
|
||||||
(string-append "-DSERIALDV_DIR="
|
(string-append "-DSERIALDV_DIR="
|
||||||
(assoc-ref %build-inputs "serialdv"))
|
#$(this-package-input "serialdv"))
|
||||||
(string-append "-DSGP4_DIR="
|
(string-append "-DSGP4_DIR="
|
||||||
(assoc-ref %build-inputs "sgp4"))
|
#$(this-package-input "sgp4"))
|
||||||
(string-append "-DSOAPYSDR_DIR="
|
(string-append "-DSOAPYSDR_DIR="
|
||||||
(assoc-ref %build-inputs "soapysdr")))))
|
#$(this-package-input "soapysdr")))))
|
||||||
(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