mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: wayland, weston: Update to 1.12.0.
* gnu/packages/freedesktop.scm (wayland): Update to 1.12.0. (weston): Update to 1.12.0. [arguments]: Adjust to source file renames.
This commit is contained in:
parent
fbb4755c8a
commit
b23992afb2
1 changed files with 8 additions and 6 deletions
|
@ -274,14 +274,14 @@ (define-public python2-pyxdg
|
||||||
(define-public wayland
|
(define-public wayland
|
||||||
(package
|
(package
|
||||||
(name "wayland")
|
(name "wayland")
|
||||||
(version "1.11.0")
|
(version "1.12.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://wayland.freedesktop.org/releases/"
|
(uri (string-append "https://wayland.freedesktop.org/releases/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1c0d5ivy9n44hykvw2ggrvqrnn7naw3wg11vbvgwzgi8g5gr4h4m"))))
|
"1c8sha5vm8w346wcbvgnjihisxfyvrr3qlbmfb5sp201p9f17d6n"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments `(#:parallel-tests? #f))
|
(arguments `(#:parallel-tests? #f))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -331,7 +331,7 @@ (define-public wayland-protocols
|
||||||
(define-public weston
|
(define-public weston
|
||||||
(package
|
(package
|
||||||
(name "weston")
|
(name "weston")
|
||||||
(version "1.11.0")
|
(version "1.12.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -339,7 +339,7 @@ (define-public weston
|
||||||
"weston-" version ".tar.xz"))
|
"weston-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"09biddxw3ar797kxf9mywjkb2iwky6my39gpp51ni846y7lqdq05"))))
|
"0cshmw4ql4cr36v90bbi4qi6plvb6b9dbpnc3w9m17rv5siw4ymc"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
|
@ -372,9 +372,11 @@ (define-public weston
|
||||||
;; Use elogind instead of systemd
|
;; Use elogind instead of systemd
|
||||||
(substitute* "configure"
|
(substitute* "configure"
|
||||||
(("libsystemd-login >= 198") "libelogind"))
|
(("libsystemd-login >= 198") "libelogind"))
|
||||||
(substitute* '("src/launcher-logind.c" "src/weston-launch.c")
|
(substitute* '("libweston/launcher-logind.c"
|
||||||
|
"libweston/weston-launch.c")
|
||||||
(("#include <systemd/sd-login.h>")
|
(("#include <systemd/sd-login.h>")
|
||||||
"#include <elogind/sd-login.h>"))))
|
"#include <elogind/sd-login.h>"))
|
||||||
|
#t))
|
||||||
(add-after 'configure 'patch-confdefs.h
|
(add-after 'configure 'patch-confdefs.h
|
||||||
(lambda _
|
(lambda _
|
||||||
(system "echo \"#define HAVE_SYSTEMD_LOGIN_209 1\" >> confdefs.h")))
|
(system "echo \"#define HAVE_SYSTEMD_LOGIN_209 1\" >> confdefs.h")))
|
||||||
|
|
Loading…
Reference in a new issue