me
/
guix
Archived
1
0
Fork 0

gnu: libpeas: Update to 1.30.0.

* gnu/packages/gnome.scm (libpeas): Update to 1.30.0.
[arguments]: Set XDG_CACHE_HOME and XDG_CONFIG_HOME variables to fix the tests.
master
Mathieu Othacehe 2021-08-22 12:21:38 +02:00
parent 2a15e92766
commit c130c94284
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 4 additions and 2 deletions

View File

@ -3086,7 +3086,7 @@ some form of information without getting in the user's way.")
(define-public libpeas (define-public libpeas
(package (package
(name "libpeas") (name "libpeas")
(version "1.28.0") (version "1.30.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -3095,7 +3095,7 @@ some form of information without getting in the user's way.")
name "-" version ".tar.xz")) name "-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"05cb7drn6arc4gi02wgsvzibigi2riz5gnfnmlb0zmbfnj9ikna2")))) "18xrk1c1ixlhkmykcfiafrl2am470ws687xqvjlq40zwkcp5dx8b"))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
'(#:phases '(#:phases
@ -3105,6 +3105,8 @@ some form of information without getting in the user's way.")
(let ((xorg-server (assoc-ref inputs "xorg-server")) (let ((xorg-server (assoc-ref inputs "xorg-server"))
(disp ":1")) (disp ":1"))
(setenv "DISPLAY" disp) (setenv "DISPLAY" disp)
(setenv "XDG_CACHE_HOME" "/tmp/xdg-cache")
(setenv "XDG_CONFIG_HOME" "/tmp")
;; Tests require a running X server. ;; Tests require a running X server.
(system (format #f "~a/bin/Xvfb ~a &" xorg-server disp)) (system (format #f "~a/bin/Xvfb ~a &" xorg-server disp))
#t)))))) #t))))))