mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-06 03:17:15 -05:00
gnu: kcalendarcore: Use G-expressions.
* gnu/packages/kde-frameworks.scm (kcalendarcore)[arguments]: Rewrite as G-expressions. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
6445dc95ed
commit
121e081cc3
1 changed files with 10 additions and 9 deletions
|
@ -502,15 +502,16 @@ (define-public kcalendarcore
|
|||
(inputs
|
||||
(list libical qtbase-5))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'check-setup
|
||||
(lambda* (#:key inputs #:allow-other-keys) ;;; XXX: failing test
|
||||
(setenv "QT_QPA_PLATFORM" "offscreen")
|
||||
(setenv "TZ" "Europe/Prague")
|
||||
(setenv "TZDIR"
|
||||
(search-input-directory inputs
|
||||
"share/zoneinfo")))))))
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'check 'check-setup
|
||||
(lambda* (#:key inputs #:allow-other-keys) ;;; XXX: failing test
|
||||
(setenv "QT_QPA_PLATFORM" "offscreen")
|
||||
(setenv "TZ" "Europe/Prague")
|
||||
(setenv "TZDIR"
|
||||
(search-input-directory inputs
|
||||
"share/zoneinfo")))))))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Library for interfacing with calendars")
|
||||
(description "This library provides access to and handling of calendar
|
||||
|
|
Loading…
Reference in a new issue