gnu: Fix some gexps.
* gnu/packages/android.scm (adb, android-ext4-utils)[arguments]: Use 'this-package-input' in gexps. * gnu/packages/finance.scm (monero-gui)[arguments]: Idem. * gnu/packages/lisp.scm (gcl)[arguments]: Idem.master
parent
79edda3874
commit
c5bb7b5d97
|
@ -362,10 +362,12 @@ various Android core host applications.")
|
|||
(arguments
|
||||
`(#:tests? #f ; Test failure: sysdeps_poll.fd_count
|
||||
#:make-flags
|
||||
,#~(list "CFLAGS=-Wno-error"
|
||||
"CXXFLAGS=-fpermissive -Wno-error -std=gnu++14 -D_Nonnull= -D_Nullable= -I ."
|
||||
(string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib "
|
||||
"-Wl,-rpath=" #$openssl "/lib -L ."))
|
||||
,#~(list
|
||||
"CFLAGS=-Wno-error"
|
||||
"CXXFLAGS=-fpermissive -Wno-error -std=gnu++14 -D_Nonnull= -D_Nullable= -I ."
|
||||
(string-append
|
||||
"LDFLAGS=-Wl,-rpath=" #$output "/lib "
|
||||
"-Wl,-rpath=" #$(this-package-input "openssl") "/lib -L ."))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'enter-source
|
||||
|
@ -532,16 +534,18 @@ the core SELinux management utilities.")
|
|||
(build-system android-ndk-build-system)
|
||||
(arguments
|
||||
`(#:make-flags
|
||||
,#~(list (string-append "CPPFLAGS="
|
||||
;"-Wno-error "
|
||||
"-I " #$android-libselinux "/include "
|
||||
"-I " #$android-libsparse "/include "
|
||||
"-I " #$android-libcutils "/include "
|
||||
"-I " #$android-liblog "/include "
|
||||
"-I ../core/include")
|
||||
"CFLAGS=-Wno-error"
|
||||
"install-libext4_utils_host.a"
|
||||
(string-append "prefix=" #$output))
|
||||
,#~(list
|
||||
(string-append
|
||||
"CPPFLAGS="
|
||||
;"-Wno-error "
|
||||
"-I " #$(this-package-input "android-libselinux") "/include "
|
||||
"-I " #$(this-package-input "android-libsparse") "/include "
|
||||
"-I " #$(this-package-input "android-libcutils") "/include "
|
||||
"-I " #$(this-package-input "android-liblog") "/include "
|
||||
"-I ../core/include")
|
||||
"CFLAGS=-Wno-error"
|
||||
"install-libext4_utils_host.a"
|
||||
(string-append "prefix=" #$output))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'unpack-core
|
||||
|
|
|
@ -793,7 +793,8 @@ the Monero command line client and daemon.")
|
|||
#:configure-flags
|
||||
,#~(list "-DARCH=default"
|
||||
"-DENABLE_PASS_STRENGTH_METER=ON"
|
||||
(string-append "-DReadline_ROOT_DIR=" #$readline))
|
||||
(string-append "-DReadline_ROOT_DIR="
|
||||
#$(this-package-input "readline")))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'extract-monero-sources
|
||||
|
|
|
@ -150,15 +150,15 @@ Definition Facility.")
|
|||
#:configure-flags ,#~(list
|
||||
"--enable-ansi" ; required by the maxima package
|
||||
(string-append "CFLAGS=-I"
|
||||
#$libtirpc
|
||||
#$(this-package-input "libtirpc")
|
||||
"/include/tirpc")
|
||||
(string-append "LDFLAGS=-L"
|
||||
#$libtirpc
|
||||
#$(this-package-input "libtirpc")
|
||||
"/lib")
|
||||
"LIBS=-ltirpc")
|
||||
#:make-flags ,#~(list
|
||||
(string-append "GCL_CC=" #$gcc "/bin/gcc")
|
||||
(string-append "CC=" #$gcc "/bin/gcc"))
|
||||
(string-append "CC="#$gcc "/bin/gcc"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'realpath-workaround
|
||||
|
|
Reference in New Issue