gnu: kcoreaddons: Use G-expressions.
* gnu/packages/kde-frameworks.scm (kcoreaddons)[arguments]: Rewrite as G-expressions. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>master
parent
acfa0bde84
commit
543032a888
|
@ -632,26 +632,27 @@ propagate their changes to their respective configuration files.")
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list extra-cmake-modules qttools-5 shared-mime-info))
|
(list extra-cmake-modules qttools-5 shared-mime-info))
|
||||||
;; TODO: FAM: File alteration notification http://oss.sgi.com/projects/fam
|
;; TODO: FAM: File alteration notification http://oss.sgi.com/projects/fam
|
||||||
(inputs
|
(inputs
|
||||||
(list qtbase-5))
|
(list qtbase-5))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(add-before 'check 'blacklist-failing-test
|
#~(modify-phases %standard-phases
|
||||||
(lambda _
|
(add-before 'check 'blacklist-failing-test
|
||||||
;; Blacklist failing tests.
|
(lambda _
|
||||||
(with-output-to-file "autotests/BLACKLIST"
|
;; Blacklist failing tests.
|
||||||
(lambda _
|
(with-output-to-file "autotests/BLACKLIST"
|
||||||
;; FIXME: Make it pass. Test failure caused by stout/stderr
|
(lambda _
|
||||||
;; being interleaved.
|
;; FIXME: Make it pass. Test failure caused by stout/stderr
|
||||||
(display "[test_channels]\n*\n")
|
;; being interleaved.
|
||||||
;; FIXME
|
(display "[test_channels]\n*\n")
|
||||||
(display "[test_inheritance]\n*\n")))))
|
;; FIXME
|
||||||
(add-before 'check 'check-setup
|
(display "[test_inheritance]\n*\n")))))
|
||||||
(lambda _
|
(add-before 'check 'check-setup
|
||||||
(setenv "HOME" (getcwd))
|
(lambda _
|
||||||
(setenv "TMPDIR" (getcwd)))))))
|
(setenv "HOME" (getcwd))
|
||||||
|
(setenv "TMPDIR" (getcwd)))))))
|
||||||
(home-page "https://community.kde.org/Frameworks")
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
(synopsis "Qt addon library with a collection of non-GUI utilities")
|
(synopsis "Qt addon library with a collection of non-GUI utilities")
|
||||||
(description "KCoreAddons provides classes built on top of QtCore to
|
(description "KCoreAddons provides classes built on top of QtCore to
|
||||||
|
|
Reference in New Issue