gnu: cool-retro-term: Fix build and runtime errors.
This fixes <https://issues.guix.gnu.org/57049>. * gnu/packages/terminals.scm (cool-retro-term) [inputs]: Add qtquickcontrols-5. [arguments]: Fix 'QML2_IMPORT_PATH'.
This commit is contained in:
parent
0e320fbfdc
commit
19592539e5
1 changed files with 5 additions and 3 deletions
|
|
@ -783,7 +783,8 @@ embedded kernel situations.")
|
||||||
(("COMMODORE_PET") "PROGGY_TINY"))))))
|
(("COMMODORE_PET") "PROGGY_TINY"))))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list qtbase-5 qtdeclarative-5 qtgraphicaleffects qtquickcontrols2-5 bash-minimal))
|
(list qtbase-5 qtdeclarative-5 qtgraphicaleffects
|
||||||
|
qtquickcontrols-5 qtquickcontrols2-5 bash-minimal))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
|
@ -805,9 +806,10 @@ embedded kernel situations.")
|
||||||
(,(string-append out qml)
|
(,(string-append out qml)
|
||||||
,@(map (lambda (i)
|
,@(map (lambda (i)
|
||||||
(string-append (assoc-ref inputs i) qml))
|
(string-append (assoc-ref inputs i) qml))
|
||||||
'("qtdeclarative-5"
|
'("qtdeclarative"
|
||||||
"qtgraphicaleffects"
|
"qtgraphicaleffects"
|
||||||
"qtquickcontrols2-5"))))))))
|
"qtquickcontrols"
|
||||||
|
"qtquickcontrols2"))))))))
|
||||||
(add-after 'install 'add-alternate-name
|
(add-after 'install 'add-alternate-name
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
|
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
|
||||||
|
|
|
||||||
Reference in a new issue