mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: qt: Use modify-phases syntax.
* gnu/packages/qt.scm (qt): Use modify-phases syntax.
This commit is contained in:
parent
7972d8a2e9
commit
cce28b0c3a
1 changed files with 39 additions and 40 deletions
|
@ -151,8 +151,8 @@ (define-public qt
|
||||||
;; A more structural fix is needed.
|
;; A more structural fix is needed.
|
||||||
#:parallel-build? #f
|
#:parallel-build? #f
|
||||||
#:phases
|
#:phases
|
||||||
(alist-replace
|
(modify-phases %standard-phases
|
||||||
'configure
|
(replace 'configure
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(substitute* '("configure" "qtbase/configure")
|
(substitute* '("configure" "qtbase/configure")
|
||||||
|
@ -189,8 +189,7 @@ (define-public qt
|
||||||
"-no-avx"
|
"-no-avx"
|
||||||
"-no-avx2"
|
"-no-avx2"
|
||||||
"-no-mips_dsp"
|
"-no-mips_dsp"
|
||||||
"-no-mips_dspr2"))))
|
"-no-mips_dspr2"))))))))
|
||||||
%standard-phases)))
|
|
||||||
(home-page "http://qt-project.org/")
|
(home-page "http://qt-project.org/")
|
||||||
(synopsis "Cross-platform GUI library")
|
(synopsis "Cross-platform GUI library")
|
||||||
(description "Qt is a cross-platform application and UI framework for
|
(description "Qt is a cross-platform application and UI framework for
|
||||||
|
|
Loading…
Reference in a new issue