mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: materialdecoration: Fix build.
* gnu/packages/qt.scm (materialdecoration)[arguments]: Use gexp for 'configure-flags'.
This commit is contained in:
parent
eded8b4f17
commit
856591e2b5
1 changed files with 6 additions and 5 deletions
|
@ -49,6 +49,7 @@ (define-module (gnu packages qt)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix build-system qt)
|
#:use-module (guix build-system qt)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix deprecation)
|
#:use-module (guix deprecation)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
|
@ -221,11 +222,11 @@ (define-public materialdecoration
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; No target
|
`(#:tests? #f ; No target
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list
|
,#~(list
|
||||||
(string-append "-DCMAKE_CXX_FLAGS=-I"
|
(string-append "-DCMAKE_CXX_FLAGS=-I"
|
||||||
(assoc-ref %build-inputs "qtbase")
|
#$(this-package-input "qtbase")
|
||||||
"/include/qt5/QtXkbCommonSupport/"
|
"/include/qt5/QtXkbCommonSupport/"
|
||||||
,(package-version qtbase-5)))))
|
#$(package-version qtbase-5)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("cmake-shared" ,cmake-shared)
|
`(("cmake-shared" ,cmake-shared)
|
||||||
("extra-cmake-modules" ,extra-cmake-modules)
|
("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
|
|
Loading…
Reference in a new issue